a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/txCommon.c src/hg/lib/txCommon.c
index f7ca748..9b587c8 100644
--- src/hg/lib/txCommon.c
+++ src/hg/lib/txCommon.c
@@ -1,24 +1,23 @@
 /* txCommon - contains routines shared by various programs in
  * the txXxx family (which is used to make the UCSC gene set */
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "txCommon.h"
 
-static char const rcsid[] = "$Id: txCommon.c,v 1.5 2008/09/17 18:10:14 kent Exp $";
 
 char *txAccFromTempName(char *tempName)
 /* Given name in this.that.acc.version format, return
  * just acc.version. */
 {
 char *s = tempName + strlen(tempName);
 int periodCount = 0;
 while (s > tempName && periodCount < 2)
     {
     char c = *(--s);
     if (c == '.')
         ++periodCount;
 
     }
 if (periodCount < 2)