##// END OF EJS Templates
ancestor.deepest: decrement ninteresting correctly (issue3984)...
Wei, Elson -
r19503:f2dfda6a stable
parent child Browse files
Show More
@@ -1362,10 +1362,10 b' static PyObject *find_deepest(indexObjec'
1362 1362 if (nsp == sp)
1363 1363 continue;
1364 1364 seen[p] = nsp;
1365 interesting[sp] -= 1;
1366 if (interesting[sp] == 0 && interesting[nsp] > 0)
1367 ninteresting -= 1;
1365 1368 interesting[nsp] += 1;
1366 interesting[sp] -= 1;
1367 if (interesting[sp] == 0)
1368 ninteresting -= 1;
1369 1369 }
1370 1370 }
1371 1371 interesting[sv] -= 1;
General Comments 0
You need to be logged in to leave comments. Login now