a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/hPrint.c src/hg/lib/hPrint.c
index b6a9121..39340fd 100644
--- src/hg/lib/hPrint.c
+++ src/hg/lib/hPrint.c
@@ -1,22 +1,21 @@
 /* hPrint - turning html printing on and off, which is useful
  * when postscript and PDF images are being drawn  */
 
 #include "hPrint.h"
 #include "htmshell.h"
 
-static char const rcsid[] = "$Id: hPrint.c,v 1.11 2010/05/07 03:38:32 galt Exp $";
 
 static boolean suppressHtml = FALSE;
 /* If doing PostScript output we'll suppress most of HTML output. */
 
 boolean hPrintStatus()
 /* is html printing on or off ?
    return TRUE for print is on, FALSE for printing is off */
 {
 return ! suppressHtml;
 }
 
 void hPrintDisable()
 /* turn html printing off */
 {
 suppressHtml = TRUE;