diff options
Diffstat (limited to 'codestyle.pl')
-rwxr-xr-x | codestyle.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codestyle.pl b/codestyle.pl index 20b074d..77ce512 100755 --- a/codestyle.pl +++ b/codestyle.pl @@ -10,7 +10,7 @@ sub ln80 { or die("$file: no such file or direcory\n"); while (<FILE>) { chomp; - 1 while $_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e; + 1 while $_ =~ s/\t+/' ' x (length($&) * 4 - length($`) % 4)/e; if (length($_) > 80) { print "WRN: in $file line $. has ".length($_)."/80 chars\n"; } |