a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/bedCart.c src/hg/lib/bedCart.c index a29efb3..27e021e 100644 --- src/hg/lib/bedCart.c +++ src/hg/lib/bedCart.c @@ -1,35 +1,34 @@ /* bedCart.c - take care of parsing values from the * bed trackDb optional settings and the same values that may be * in the cart. */ #include "common.h" #include "jksql.h" #include "trackDb.h" #include "cart.h" #include "dystring.h" #include "bedCart.h" -static char const rcsid[] = "$Id: bedCart.c,v 1.3 2009/04/10 16:47:40 tdreszer Exp $"; #if defined(NOT_YET) extern struct cart *cart; /* defined in hgTracks.c or hgTrackUi */ /* This option isn't in the cart yet ... maybe later */ #endif /****** itemRgb - not on by default **************************/ boolean bedItemRgb(struct trackDb *tdb) { char *Default="Off"; /* anything different than this will turn it on */ char *tdbDefault = (char *)NULL; if (tdb) tdbDefault = trackDbSettingClosestToHome(tdb, OPT_ITEM_RGB); if (tdbDefault) { if (differentWord(Default,tdbDefault)) return TRUE; } return FALSE; } /* boolean bedItemRgb(struct trackDb *tdb) */