a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/spacedColumn.c src/lib/spacedColumn.c
index 35fd32c..c1256e4 100644
--- src/lib/spacedColumn.c
+++ src/lib/spacedColumn.c
@@ -1,25 +1,24 @@
 /* spacedColumn - stuff to handle parsing text files where fields are
  * fixed width rather than tab delimited. */
 
 #include "common.h"
 #include "linefile.h"
 #include "spacedColumn.h"
 #include "obscure.h"
 #include "sqlNum.h"
 
-static char const rcsid[] = "$Id: spacedColumn.c,v 1.1 2007/03/23 06:29:51 kent Exp $";
 
 struct spacedColumn *spacedColumnFromSample(char *sample)
 /* Return spaced column list from a sampleline , which is assumed to
  * have no spaces except between columns */
 {
 struct spacedColumn *col, *colList = NULL;
 char *dupe = cloneString(sample);
 char *word, *line = dupe;
 while ((word = nextWord(&line)) != NULL)
     {
     AllocVar(col);
     col->start = word - dupe;
     col->size = strlen(word);
     slAddHead(&colList, col);
     }