src/hg/lib/trackDbCustom.c 1.90
1.90 2010/05/18 22:37:36 kent
Exposing trackDbSettingsFromString and using it in place of raFromString.
Index: src/hg/lib/trackDbCustom.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/trackDbCustom.c,v
retrieving revision 1.89
retrieving revision 1.90
diff -b -B -U 4 -r1.89 -r1.90
--- src/hg/lib/trackDbCustom.c 18 May 2010 20:04:52 -0000 1.89
+++ src/hg/lib/trackDbCustom.c 18 May 2010 22:37:36 -0000 1.90
@@ -309,13 +307,13 @@
/* Force trackDb to hash up it's settings. Usually this is just
* done on demand. Returns settings hash. */
{
if (tdb->settingsHash == NULL)
- tdb->settingsHash = raFromString(tdb->settings);
+ tdb->settingsHash = trackDbSettingsFromString(tdb->settings);
return tdb->settingsHash;
}
-static struct hash *trackDbSettingsFromString(char *string)
+struct hash *trackDbSettingsFromString(char *string)
/* Return hash of key/value pairs from string. Differs
* from raFromString in that it passes the key/val
* pair through the backwards compatability routines. */
{