##// END OF EJS Templates
Ancestor algorithm fix...
mpm@selenic.com -
r381:024ee0f8 default
parent child Browse files
Show More
@@ -325,10 +325,10 b' class revlog:'
325 325 earliest = self.count()
326 326 while h:
327 327 d, n = heapq.heappop(h)
328 r = self.rev(n)
329 328 if n not in seen:
330 329 seen[n] = 1
331 yield (-d, n)
330 r = self.rev(n)
331 yield (-d, r, n)
332 332 for p in self.parents(n):
333 333 heapq.heappush(h, (-dist[p], p))
334 334
@@ -341,7 +341,7 b' class revlog:'
341 341 # the other, or they match
342 342 while 1:
343 343 if lx == ly:
344 return lx[1]
344 return lx[2]
345 345 elif lx < ly:
346 346 ly = y.next()
347 347 elif lx > ly:
General Comments 0
You need to be logged in to leave comments. Login now