##// END OF EJS Templates
findcopies: fix rename bug...
Matt Mackall -
r5433:f9b0e4f0 default
parent child Browse files
Show More
@@ -177,7 +177,7 b' def findcopies(repo, m1, m2, ma, limit):'
177 continue
177 continue
178 # named changed on only one side?
178 # named changed on only one side?
179 if ca.path() == c.path() or ca.path() == c2.path():
179 if ca.path() == c.path() or ca.path() == c2.path():
180 if c == ca or c2 == ca: # no merge needed, ignore copy
180 if c == ca and c2 == ca: # no merge needed, ignore copy
181 continue
181 continue
182 copy[c.path()] = of
182 copy[c.path()] = of
183
183
@@ -254,7 +254,7 b' def findcopies(repo, m1, m2, ma, limit):'
254
254
255 def symmetricdifference(repo, rev1, rev2):
255 def symmetricdifference(repo, rev1, rev2):
256 """symmetric difference of the sets of ancestors of rev1 and rev2
256 """symmetric difference of the sets of ancestors of rev1 and rev2
257
257
258 I.e. revisions that are ancestors of rev1 or rev2, but not both.
258 I.e. revisions that are ancestors of rev1 or rev2, but not both.
259 """
259 """
260 # basic idea:
260 # basic idea:
General Comments 0
You need to be logged in to leave comments. Login now