summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-12-09 05:37:26 +0000
committerNick Mathewson <nickm@torproject.org>2005-12-09 05:37:26 +0000
commit39265dd72e9285ea61a0d2a16d7e80050ced546e (patch)
tree1affb9adb311c31f0c4e4613653940713655c21c /contrib
parent95e471c9a65f36776cb1fb9ccbcef4890640d7f4 (diff)
downloadtor-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-xcontrib/checkSpace.pl6
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) {