a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/wigDataStream.c src/hg/lib/wigDataStream.c
index 179e658..167dd3a 100644
--- src/hg/lib/wigDataStream.c
+++ src/hg/lib/wigDataStream.c
@@ -3,31 +3,30 @@
  */
 #include "common.h"
 #include "memalloc.h"
 #include "wiggle.h"
 #include "portable.h"
 #include "hgColors.h"
 #include "obscure.h"
 #include "customTrack.h"
 
 /*	size of memory to work with during wiggle data fetch operations,
  *	~4 Gb is good enough for about 750,000,000 bases	*/
 /* raising this number has a big effect and slows down some tracks ?
  * namely, psl/bed custom tracks, this doesn't make any sense */
 #define	HUGE_LIMIT	2100000000
 
-static char const rcsid[] = "$Id: wigDataStream.c,v 1.87 2009/12/21 23:09:17 hiram Exp $";
 
 /*	Routines that are not strictly part of the wigDataStream object,
 	but they are used to do things with the object.
 **************************************************************************/
 
 void wigStatsTableHeading(FILE * fh, boolean htmlOut)
 /*	Print the single html (or text) table row for statistics
 	column headings */
 {
 if (htmlOut)
     {
     fprintf(fh,"<TR><TH> Chrom </TH><TH> Data <BR> start </TH>");
     fprintf(fh,"<TH> Data <BR> end </TH>");
     fprintf(fh,"<TH> #&nbsp;of&nbsp;Data <BR> values </TH><TH> "
 	    "Each&nbsp;data <BR> value&nbsp;spans <BR> #&nbsp;bases </TH>");