4ae605479b0a70ba1399018687433df8a50ba860 galt Wed Nov 19 14:24:26 2025 -0800 updated the code comment for the isCOmplexSetting(). diff --git src/hg/lib/trackDb.c src/hg/lib/trackDb.c index a58d0ee39ed..f160f2fb637 100644 --- src/hg/lib/trackDb.c +++ src/hg/lib/trackDb.c @@ -256,31 +256,30 @@ fputc(sep,f); if (sep == ',') fputc('"',f); fprintf(f, "%s", el->grp); if (sep == ',') fputc('"',f); fputc(sep,f); fprintf(f, "%u", el->canPack); fputc(sep,f); if (sep == ',') fputc('"',f); fprintf(f, "%s", el->settings); if (sep == ',') fputc('"',f); fputc(lastSep,f); } boolean isComplexSetting(char *name) /* Check to see if this is one of the filter variables that have arbitrary initial strings. - * This routine copied to hubCheck. */ { if (startsWith("yAxisLabel.", name)) return TRUE; if (startsWith("filter.", name)) return TRUE; if (startsWith("filterValues.", name)) return TRUE; if (startsWith("filterValuesDefault.", name)) return TRUE; if (startsWith("filterType.", name)) return TRUE; if (startsWith("filterLimits.", name)) return TRUE; if (startsWith("filterLabel.", name)) return TRUE;