a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/seqOut.c src/lib/seqOut.c index dc2177b..995c47d 100644 --- src/lib/seqOut.c +++ src/lib/seqOut.c @@ -1,30 +1,29 @@ /* seqOut - stuff to output sequences and alignments in web * or ascii viewable form. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "obscure.h" #include "dnautil.h" #include "fuzzyFind.h" #include "seqOut.h" #include "htmshell.h" #include "axt.h" -static char const rcsid[] = "$Id: seqOut.c,v 1.28 2009/08/21 18:39:59 angie Exp $"; struct cfm *cfmNew(int wordLen, int lineLen, boolean lineNumbers, boolean countDown, FILE *out, int numOff) /* Set up colored sequence formatting for html. */ { struct cfm *cfm; AllocVar(cfm); cfm->inWord = cfm->inLine = cfm->charCount = 0; cfm->color = 0; cfm->wordLen = wordLen; cfm->lineLen = lineLen; cfm->lineNumbers = lineNumbers; cfm->countDown = countDown; cfm->out = out; cfm->numOff = numOff;