a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/customPp.c src/hg/lib/customPp.c index a2d5c4a..d87e36e 100644 --- src/hg/lib/customPp.c +++ src/hg/lib/customPp.c @@ -3,31 +3,30 @@ * are taking care of references to URLs, which are treated as includes, * and moving lines that start with "browser" to a list. * * Also this allows unlimited "pushBack" of lines, which is handy, since * the system will analyse a number of lines of a track to see what format * it's in. */ #include "common.h" #include "linefile.h" #include "net.h" #include "customPp.h" #ifdef PROGRESS_METER #include "udc.h" #endif -static char const rcsid[] = "$Id: customPp.c,v 1.8 2009/09/25 00:20:20 galt Exp $"; struct customPp *customDocPpNew(struct lineFile *lf) /* Return customPp that will ignore browser lines, for doc files */ { struct customPp *cpp = customPpNew(lf); cpp->ignoreBrowserLines = TRUE; return cpp; } struct customPp *customPpNew(struct lineFile *lf) /* Return customPp on lineFile */ { struct customPp *cpp; AllocVar(cpp);