a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/gff.c src/lib/gff.c
index ee2c75f..14309e4 100644
--- src/lib/gff.c
+++ src/lib/gff.c
@@ -1,29 +1,28 @@
 /* gff - routines to read many types of gff and gtf files
  * and turn them into a relatively easy to deal with form
  * in memory.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "gff.h"
 #include "obscure.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: gff.c,v 1.24 2009/02/05 20:53:24 hiram Exp $";
 
 void gffGroupFree(struct gffGroup **pGroup)
 /* Free up a gffGroup including lineList. */
 {
 struct gffGroup *group;
 if ((group = *pGroup) != NULL)
     {
     slFreeList(&group->lineList);
     freez(pGroup);
     }
 }
 
 void gffGroupFreeList(struct gffGroup **pList)
 /* Free up a list of gffGroups. */
 {