diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-10 08:27:01 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-10 08:27:01 +0000 |
commit | 9b0a40ec7866005928e49b4717d626e64057c331 (patch) | |
tree | 0fe396d96f05202b3aa6af2cfc493e2c732c2d25 /contrib/checkSpace.pl | |
parent | 0a0f5952e8c6bc8ce514ecba084ea6412f91c625 (diff) | |
download | tor-9b0a40ec7866005928e49b4717d626e64057c331.tar.gz tor-9b0a40ec7866005928e49b4717d626e64057c331.zip |
crank the max line limit down to 150 chars.
svn:r5550
Diffstat (limited to 'contrib/checkSpace.pl')
-rwxr-xr-x | contrib/checkSpace.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/checkSpace.pl b/contrib/checkSpace.pl index 4b480e0f44..228d48b37b 100755 --- a/contrib/checkSpace.pl +++ b/contrib/checkSpace.pl @@ -37,7 +37,7 @@ for $fn (@ARGV) { } ## Terminals are still 80 columns wide in my world. I refuse to ## accept double-line lines. - if (/^.{160}/) { + if (/^.{150}/) { print " Wide:$fn:$.\n"; } |