# HG changeset patch # User Matt Mackall # Date 1165967553 21600 # Node ID c0a12e6441a5abb669fcd62cc9719220c255fcd5 # Parent e88d03c2a3d95ae6865749e3686e1786e15a3505 Fix copy detection corner case We were aborting if the copied from rev was before the cut-off limit, rather than the copied _to_ rev. The copied from rev can be arbitrarily old. diff -r e88d03c2a3d9 -r c0a12e6441a5 mercurial/merge.py --- a/mercurial/merge.py Tue Dec 12 12:40:51 2006 -0800 +++ b/mercurial/merge.py Tue Dec 12 17:52:33 2006 -0600 @@ -109,10 +109,10 @@ visit = [fctx] while visit: fc = visit.pop() + if fc.path() != orig and fc.path() not in old: + old[fc.path()] = 1 if fc.rev() < limit: continue - if fc.path() != orig and fc.path() not in old: - old[fc.path()] = 1 visit += fc.parents() old = old.keys()