a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/mafFromAxt.c src/lib/mafFromAxt.c
index be551b7..3841e0e 100644
--- src/lib/mafFromAxt.c
+++ src/lib/mafFromAxt.c
@@ -1,21 +1,20 @@
 /* mafFromAxt - convert a axt into maf. */
 #include "common.h"
 #include "axt.h"
 #include "maf.h"
 
-static char const rcsid[] = "$Id: mafFromAxt.c,v 1.4 2003/05/17 23:47:15 kent Exp $";
 
 void mafFromAxtTemp(struct axt *axt, int tSize, int qSize,
 	struct mafAli *temp)
 /* Make a maf out of axt,  parasiting on the memory in axt.
  * Do *not* mafFree this temp.  The memory it has in pointers
  * is still owned by the axt.  Furthermore the next call to
  * this function will invalidate the previous temp value.
  * It's sort of a kludge, but quick to run and easy to implement. */
 {
 static struct mafComp qComp, tComp;
 ZeroVar(temp);
 ZeroVar(&qComp);
 ZeroVar(&tComp);
 temp->score = axt->score;
 temp->textSize = axt->symCount;