a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/liftUp.c src/hg/lib/liftUp.c
index 128b1f3..c76297d 100644
--- src/hg/lib/liftUp.c
+++ src/hg/lib/liftUp.c
@@ -1,23 +1,22 @@
 /* liftUp - stores offsets for translating coordinates. */
 #include "common.h"
 #include "linefile.h"
 #include "portable.h"
 #include "hash.h"
 #include "liftUp.h"
 
-static char const rcsid[] = "$Id: liftUp.c,v 1.4 2008/09/17 18:10:14 kent Exp $";
 
 struct liftSpec *readLifts(char *fileName)
 /* Read in lift file. */
 {
 struct lineFile *lf = lineFileOpen(fileName, TRUE);
 int wordCount;
 char *words[16];
 struct liftSpec *list = NULL, *el;
 
 while ((wordCount = lineFileChop(lf, words)) != 0)
     {
     char *offs;
     if (wordCount < 5)
         errAbort("Need at least 5 words line %d of %s", lf->lineIx, lf->fileName);
     offs = words[0];