a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/xenshow.c src/lib/xenshow.c
index b73bc3b..8b1bc08 100644
--- src/lib/xenshow.c
+++ src/lib/xenshow.c
@@ -1,24 +1,23 @@
 /* xenshow - show a cross-species alignment. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 #include "common.h"
 #include "nt4.h"
 #include "xenalign.h"
 
-static char const rcsid[] = "$Id: xenshow.c,v 1.5 2003/05/06 07:33:44 kate Exp $";
 
 static void printMatchers(char *a, char *b, int lineSize, FILE *f)
 /* Print '|' where a[i] and b[i] match, ' ' where they don't */
 {
 int i;
 for (i=0; i<lineSize; ++i)
    {
    char c = ((a[i] == b[i]) ? '|' : ' ');
    fputc(c, f);
    }
 }
 
 static int nonDashCount(char *s, int size)
 /* Return number of characters in s[0] to s[size-1] that
  * aren't dashes. */