a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/emblParse.c src/lib/emblParse.c index eb1c4b9..5061010 100644 --- src/lib/emblParse.c +++ src/lib/emblParse.c @@ -37,31 +37,30 @@ XX BF T00526; MyoD ; mouse XX BA 5 functional elements in 3 genes XX XX // */ #include "common.h" #include "linefile.h" #include "hash.h" #include "emblParse.h" -static char const rcsid[] = "$Id: emblParse.c,v 1.3 2003/05/06 07:33:42 kate Exp $"; boolean emblLineGroup(struct lineFile *lf, char type[16], struct dyString *val) /* Read next line of embl file. Read line after that too if it * starts with the same type field. Return FALSE at EOF. */ { char *line, *word; int typeLen = 0; dyStringClear(val); while (lineFileNext(lf, &line, NULL)) { line = skipLeadingSpaces(line); /* Parse out first word into type. */ if (isspace(line[0]))