a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/bdfToGem/bdfToGem.c src/utils/bdfToGem/bdfToGem.c
index 7340801..c1e055e 100644
--- src/utils/bdfToGem/bdfToGem.c
+++ src/utils/bdfToGem/bdfToGem.c
@@ -1,25 +1,24 @@
 /* bdfToGem - convert font bdf files to Gem C source font definitions */
 
 #include	"common.h"
 #include	"memgfx.h"
 #include	"sqlNum.h"
 #include	"options.h"
 #include	"linefile.h"
 #include	"gemfont.h"
 
-static char const rcsid[] = "$Id: bdfToGem.c,v 1.15 2010/03/27 01:42:56 kent Exp $";
 
 static char *name = (char *)NULL;	/* to name the font in the .c file */
 static boolean noHeader = FALSE;  /* do not output the C header, data only */
 
 /* command line option specifications */
 static struct optionSpec optionSpecs[] = {
     {"noHeader", OPTION_BOOLEAN},
     {"name", OPTION_STRING},
     {NULL, 0}
 };
 
 static void usage()
 {
 errAbort(
 "bdfToGem - convert font bdf files to Gem C source font definitions\n"
@@ -377,32 +376,30 @@
     else
 	glyph = glyph->next;	/*	not missing, OK to go to next */
 
     offset += bitsCopy(bitmap, offset, maxYextent, minYoff, glyphToUse);
     ++glyphCount;
     }
 
 offsets[glyphCount] = offset;
 
 if ((char *)NULL == name)
 	name = cloneString(DEFAULT_FONT);	/*	default name of font */
 
 /*	And now to start the output of the C source code	*/
 
 fprintf(f, "\n/* %s.c - compiled data for font %s */\n", name,font->facename);
-if (! noHeader)
-    fprintf(f, "static char const rcsid[] = \"$Id: bdfToGem.c,v 1.15 2010/03/27 01:42:56 kent Exp $\";\n");
 
 fprintf(f, "/* generated source code by utils/bdfToGem, do not edit */\n");
 fprintf(f, "/* BDF data file input: %s */\n\n", inputFileName);
 
 if (! noHeader)
     {
     fprintf(f, "#include \"common.h\"\n");
     fprintf(f, "#include \"memgfx.h\"\n");
     fprintf(f, "#include \"../gemfont.h\"\n\n");
     }
 
 fprintf(f, "static UBYTE %s_data[%d] = {\n", name,
 	font->frm_hgt * font->frm_wdt);
 
 bytesOut = 0;