a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgGene/links.c src/hg/hgGene/links.c
index f71ab6f..8179ad3 100644
--- src/hg/hgGene/links.c
+++ src/hg/hgGene/links.c
@@ -1,28 +1,27 @@
 /* links.c - Handle links section. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "web.h"
 #include "hui.h"
 #include "hdb.h"
 #include "hgGene.h"
 #include "wikiTrack.h"
 
-static char const rcsid[] = "$Id: links.c,v 1.38 2009/06/18 20:19:18 hiram Exp $";
 
 struct link
 /* A link to another web site. */
     {
     struct link *next;	/* Next in list. */
     double priority;	/* Order to print in. */
     char *name;		/* Symbolic name. */
     char *shortLabel;	/* Short human-readable label. */
     char *idSql;	/* SQL to create ID. */
     char *nameSql;	/* SQL to create name. */
     char *nameFormat;	/* Text formatting for name. */
     char *url;		/* URL of link. */
     boolean useHgsid;	/* If true add hgsid to link. */
     boolean useDb;	/* If true add db= to link. */
     char *preCutAt;	/* String to chop at before sql. */