summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xre2
1 files changed, 1 insertions, 1 deletions
diff --git a/re b/re
index 78f4129..cd373aa 100755
--- a/re
+++ b/re
@@ -111,7 +111,7 @@ while (<$fh>) {
while ($_ = readline $handles{$file}) {
$bytes += length($_);
last if $end and $bytes > $end;
- /^(\s+)/; my $indent = $1;
+ /^(\s*)/; my $indent = $1;
my $max = 64;
for (split //, $indent) {
$max -= 7 if /\t/;