Changeset 15326

Show
Ignore:
Timestamp:
02/22/07 19:58:44 (21 months ago)
Author:
lwall
Message:

Added configurable tabstop.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl6/Perl-6.0.0-STD.pm

    r15323 r15326  
    12341234                for @heredoc_initial_strings { 
    12351235                    next if s/^ $ws //;   # reward consistent tabbing 
    1236                     s/^^ (\t+) /{ ' ' x ($0 * 8) }/; 
     1236                    s/^^ (\t+) /{ ' ' x ($0 * (COMPILING::<$?TABSTOP> // 8)) }/; 
    12371237                    s/^ $wsequiv // or s/^ \h+ //; 
    12381238                }