6f4f2099c79ee94a6834b96d723e91839cea3e3f
kate
Tue Jan 20 13:31:02 2015 -0800
Use color constant (one step toward using style)
diff --git src/hg/lib/web.c src/hg/lib/web.c
index 91bd3d5..af1773a 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -943,31 +943,31 @@
}
void webIncludeHelpFile(char *fileRoot, boolean addHorizLine)
/* Given a help file root name (e.g. "hgPcrResult" or "cutters"),
* print out the contents of the file. If addHorizLine, print out an
*
first. */
{
if (addHorizLine)
htmlHorizontalLine();
webIncludeFile(hHelpFile(fileRoot));
}
void webPrintLinkTableStart()
/* Print link table start in our colors. */
{
-printf("\n");
+printf("\n");
printf("\n");
}
void webPrintLinkTableEnd()
/* Print link table end in our colors. */
{
printf(" \n");
printf(" | \n");
}
void webPrintLinkOutCellStart()
/* Print link cell that goes out of our site. End with
* webPrintLinkTableEnd. */
{
printf(" | ");
|