a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/hCytoBand.c src/hg/lib/hCytoBand.c index 3355e9d..cdb36d6 100644 --- src/hg/lib/hCytoBand.c +++ src/hg/lib/hCytoBand.c @@ -1,26 +1,25 @@ /* hCytoBand - stuff to help draw chromosomes where we have * banding data. */ #include "common.h" #include "hvGfx.h" #include "hCommon.h" #include "hgColors.h" #include "cytoBand.h" #include "hCytoBand.h" -static char const rcsid[] = "$Id: hCytoBand.c,v 1.7 2010/04/06 19:56:19 kent Exp $"; static char *abbreviatedBandName(struct cytoBand *band, MgFont *font, int width, boolean isDmel) /* Return a string abbreviated enough to fit into space. */ { int textWidth; static char string[32]; /* If have enough space, return original chromosome/band. */ sprintf(string, "%s%s", (isDmel ? "" : skipChr(band->chrom)), band->name); textWidth = mgFontStringWidth(font, string); if (textWidth <= width) return string; /* Try leaving off chromosome */