f065348d515b4ebfc2b83149e050120dcb410a57
braney
Sat Jun 21 14:21:30 2014 -0700
add a couple features requested in #11633
diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c
index db4100b..999108f 100644
--- src/hg/hgHubConnect/hgHubConnect.c
+++ src/hg/hgHubConnect/hgHubConnect.c
@@ -36,31 +36,31 @@
char *organism = NULL;
static void ourCellStart()
{
fputs("
", stdout); // do not add a newline
}
static void ourCellEnd()
{
puts(" | ");
}
static void ourPrintCellLink(char *str, char *url)
{
ourCellStart();
-printf("\n", url);
+printf("\n", url);
if (str != NULL)
fputs(str, stdout); // do not add a newline -- was causing trailing blanks get copied in cut and paste
puts("");
ourCellEnd();
}
static void ourPrintCell(char *str)
{
ourCellStart();
if (str != NULL)
fputs(str, stdout); // do not add a newline -- was causing trailing blanks get copied in cut and paste
ourCellEnd();
}
static char *removeLastComma(char *string)