src/README 1.24

1.24 2010/06/03 16:48:53 kent
Adding limit to line size.
Index: src/README
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/README,v
retrieving revision 1.23
retrieving revision 1.24
diff -b -B -U 4 -r1.23 -r1.24
--- src/README	5 May 2010 23:34:03 -0000	1.23
+++ src/README	3 Jun 2010 16:48:53 -0000	1.24
@@ -150,9 +150,9 @@
 
 
 CODE CONVENTIONS
 
-INDENTATION:
+INDENTATION AND SPACING:
 
 The code follows an indentation convention that is a bit
 unusual for C.  Opening and closing braces are on
 a line by themselves and are indented at the same
@@ -163,9 +163,10 @@
 	doSomethingElse();
 	}
 Tab stops are set to 8.  Each block of code is 
 indented by 4 from the previous block.  (In the
-vi editor set ts=8  set sw=4)
+vi editor set ts=8  set sw=4.)  Lines are no more than
+100 characters wide.
 
 NAMES
 
 Symbol names begin with a lower-case letter.  The second