98d595118a466c5ef78850d88a2e41f06049d548 galt Wed Nov 19 14:21:02 2025 -0800 Max prefers to have one shared copy of the routine. This changes does not affect functionality, just moves the routine into the trackDb.c lib file. Feedback from Max code review. refs #28113 diff --git src/hg/inc/trackDb.h src/hg/inc/trackDb.h index 54f89b45327..73a9de5d1fe 100644 --- src/hg/inc/trackDb.h +++ src/hg/inc/trackDb.h @@ -752,17 +752,22 @@ /* Check to see if we're caching trackDb contents. */ boolean trackSettingIsFile(char *setting); /* Returns TRUE if setting found in trackDb stanza is a file setting that * would benefit from directory $D substitution among other things - looks for * settings that ends in "Url" and a few others. */ char *labelAsFiltered(char *label); /* add text to label to indicate filter is active */ char *labelAsFilteredNumber(char *label, unsigned number); /* add text to label to indicate filter is active */ int trackDbGetCartVersion(); /* Get the highest cart version that a set of trackDb entries has specified. */ + +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. */ + #endif /* TRACKDB_H */