diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
commit | 39265dd72e9285ea61a0d2a16d7e80050ced546e (patch) | |
tree | 1affb9adb311c31f0c4e4613653940713655c21c /contrib | |
parent | 95e471c9a65f36776cb1fb9ccbcef4890640d7f4 (diff) | |
download | tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.tar.gz tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.zip |
In my private little universe, terminals are still 80 columns. Impose a 160-character-per-line limit; this will creep down.
svn:r5548
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/checkSpace.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/checkSpace.pl b/contrib/checkSpace.pl index e0b9d6b93b..4b480e0f44 100755 --- a/contrib/checkSpace.pl +++ b/contrib/checkSpace.pl @@ -35,6 +35,12 @@ for $fn (@ARGV) { } else { $lastnil = 0; } + ## Terminals are still 80 columns wide in my world. I refuse to + ## accept double-line lines. + if (/^.{160}/) { + print " Wide:$fn:$.\n"; + } + ### Juju to skip over comments and strings, since the tests ### we're about to do are okay there. if ($C) { |