0f2b15b55316a468c710d89d7078ac6aa95a2bc8 angie Mon Jun 24 09:02:45 2013 -0700 Fixing problems with the way hgTables and hgVai handled failed position searches.fixes #10964, refs #6152 diff --git src/hg/hgTables/intersect.c src/hg/hgTables/intersect.c index 0c14ca7..11fa527 100644 --- src/hg/hgTables/intersect.c +++ src/hg/hgTables/intersect.c @@ -301,38 +301,38 @@ void doIntersectPage(struct sqlConnection *conn) /* Respond to intersect create/edit button */ { if (ArraySize(curVars) != ArraySize(nextVars)) internalErr(); copyCartVars(cart, curVars, nextVars, ArraySize(curVars)); doIntersectMore(conn); } void doClearIntersect(struct sqlConnection *conn) /* Respond to click on clear intersection. */ { removeCartVars(cart, curVars, ArraySize(curVars)); -doMainPage(conn); +doMainPage(conn, FALSE); } void doIntersectSubmit(struct sqlConnection *conn) /* Respond to submit on intersect page. */ { copyCartVars(cart, nextVars, curVars, ArraySize(curVars)); -doMainPage(conn); +doMainPage(conn, FALSE); } static void bitSetClippedRange(Bits *bits, int bitSize, int s, int e) /* Clip start and end to [0,bitSize) and set range. */ { int w; if (e > bitSize) e = bitSize; if (s < 0) s = 0; w = e - s; if (w > 0) bitSetRange(bits, s, w); } static void bedOrBits(Bits *bits, int bitSize, struct bed *bedList,