daf43e0a107ab48cc94db1d7ddad8438f94b01a1
kent
  Tue Apr 17 21:32:03 2012 -0700
Dealing with a name conflict I just introduced between lib and hg/lib.
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 87fe8dd..5c6ccd4 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -7753,41 +7753,43 @@
 struct asObject *asForTdb(struct sqlConnection *conn, struct trackDb *tdb)
 // Get autoSQL description if any associated with table.
 {
 struct errCatch *errCatch = errCatchNew();
 struct asObject *asObj = NULL;
 // Wrap some error catching around asForTdbOrDie.
 if (errCatchStart(errCatch))
     {
     asObj = asForTdbOrDie(conn, tdb);
     }
 errCatchEnd(errCatch);
 errCatchFree(&errCatch);
 return asObj;
 }
 
+#ifdef OLD /* This got moved to main library . */
 struct asColumn *asColumnFind(struct asObject *asObj, char *name)
 // Return named column.
 {
 struct asColumn *asCol = NULL;
 if (asObj!= NULL)
     {
     for (asCol = asObj->columnList; asCol != NULL; asCol = asCol->next)
         if (sameString(asCol->name, name))
              break;
     }
 return asCol;
 }
+#endif /* OLD */
 
 struct slName *asColNames(struct asObject *as)
 // Get list of column names.
 {
 struct slName *list = NULL, *el;
 struct asColumn *col;
 for (col = as->columnList; col != NULL; col = col->next)
     {
     el = slNameNew(col->name);
     slAddHead(&list, el);
     }
 slReverse(&list);
 return list;
 }