diff options
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"; } |