a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/jkOwnLib/ffSeedExtend.c src/jkOwnLib/ffSeedExtend.c
index 8aea96f..e0baaf4 100644
--- src/jkOwnLib/ffSeedExtend.c
+++ src/jkOwnLib/ffSeedExtend.c
@@ -1,30 +1,29 @@
 /* ffSeedExtend - extend alignment out from ungapped seeds. */
 /* Copyright 2003 Jim Kent.  All rights reserved. */
 
 #include "common.h"
 #include "dnaseq.h"
 #include "localmem.h"
 #include "memalloc.h"
 #include "bits.h"
 #include "genoFind.h"
 #include "fuzzyFind.h"
 #include "supStitch.h"
 #include "bandExt.h"
 #include "gfInternal.h"
 
-static char const rcsid[] = "$Id: ffSeedExtend.c,v 1.36 2006/06/22 16:24:43 kent Exp $";
 
 static void extendExactRight(int qMax, int tMax, char **pEndQ, char **pEndT)
 /* Extend endQ/endT as much to the right as possible. */
 {
 int last = min(qMax, tMax);
 int i;
 char *q = *pEndQ, *t = *pEndT;
 
 for (i=0; i<last; ++i)
     {
     if (*q != *t)
 	break;
     q += 1;
     t += 1;
     }