diff options
Diffstat (limited to 'contrib/checkSpace.pl')
-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) { |