a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/hmmPfamParse.c src/lib/hmmPfamParse.c
index 61bad01..6e85e92 100644
--- src/lib/hmmPfamParse.c
+++ src/lib/hmmPfamParse.c
@@ -1,24 +1,23 @@
 /* hmmpfamParse - Parse hmmpfam files.. */
 
 #include "common.h"
 #include "linefile.h"
 #include "errabort.h"
 #include "spacedColumn.h"
 #include "hmmPfamParse.h"
 
-static char const rcsid[] = "$Id: hmmPfamParse.c,v 1.3 2007/03/23 16:38:40 kent Exp $";
 
 void hpfModelFree(struct hpfModel **pMod)
 /* Free memory associated with hpfModel */
 {
 struct hpfModel *mod = *pMod;
 if (mod != NULL)
     {
     freeMem(mod->name);
     freeMem(mod->description);
     slFreeList(&mod->domainList);
     freez(pMod);
     }
 }
 
 void hpfModelFreeList(struct hpfModel **pList)