a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/boxClump.c src/lib/boxClump.c
index 5485c4a..5f28bd6 100644
--- src/lib/boxClump.c
+++ src/lib/boxClump.c
@@ -1,24 +1,23 @@
 /* boxClump - put together 2 dimensional boxes that
  * overlap with each other into clumps. */
 
 #include "common.h"
 #include "dlist.h"
 #include "localmem.h"
 #include "boxClump.h"
 
-static char const rcsid[] = "$Id: boxClump.c,v 1.5 2005/01/10 00:11:34 kent Exp $";
 
 /** Some simple utility function on globally declared 
  ** data structures. **/
 
 
 void boxClumpFree(struct boxClump **pClump)
 /* Free boxClump. */
 {
 struct boxClump *clump = *pClump;
 if (clump != NULL)
     {
     slFreeList(&clump->boxList);
     freez(pClump);
     }
 }