[or-cvs] In my private little universe, terminals are still 80 colum...

Nick Mathewson nickm at seul.org
Fri Dec 9 05:37:28 UTC 2005


Update of /home/or/cvsroot/tor/contrib
In directory moria:/tmp/cvs-serv25721/contrib

Modified Files:
	checkSpace.pl 
Log Message:
In my private little universe, terminals are still 80 columns.  Impose a 160-character-per-line limit; this will creep down.

Index: checkSpace.pl
===================================================================
RCS file: /home/or/cvsroot/tor/contrib/checkSpace.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- checkSpace.pl	30 Sep 2005 01:39:23 -0000	1.10
+++ checkSpace.pl	9 Dec 2005 05:37:26 -0000	1.11
@@ -35,6 +35,12 @@
         } 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) {



More information about the tor-commits mailing list