a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/maf.c src/lib/maf.c
index bab1820..5f5dd0d 100644
--- src/lib/maf.c
+++ src/lib/maf.c
@@ -1,27 +1,26 @@
 /* maf.c - Read/write maf format. */
 #include "common.h"
 #include "linefile.h"
 #include "errabort.h"
 #include "obscure.h"
 #include "dnautil.h"
 #include "axt.h"
 #include "maf.h"
 #include "hash.h"
 #include <fcntl.h>
 
-static char const rcsid[] = "$Id: maf.c,v 1.44 2010/05/06 02:59:41 markd Exp $";
 
 char *mafRegDefTxUpstream = "txupstream";  // transcription start size upstream region
 
 struct mafFile *mafMayOpen(char *fileName)
 /* Open up a maf file and verify header. */
 {
 struct mafFile *mf;
 struct lineFile *lf;
 char *line, *word;
 char *sig = "##maf";
 
 if ((lf = lineFileMayOpen(fileName, TRUE)) == NULL)
     return NULL;
 AllocVar(mf);
 mf->lf = lf;