##// END OF EJS Templates
copies: always respect matcher arg to _forwardcopies()...
Martin von Zweigbergk -
r35421:7ddc1e96 default
parent child Browse files
Show More
@@ -139,11 +139,11 def _tracefile(fctx, am, limit=-1):
139 139 if limit >= 0 and f.linkrev() < limit and f.rev() < limit:
140 140 return None
141 141
142 def _dirstatecopies(d):
142 def _dirstatecopies(d, match=None):
143 143 ds = d._repo.dirstate
144 144 c = ds.copies().copy()
145 145 for k in list(c):
146 if ds[k] not in 'anm':
146 if ds[k] not in 'anm' or (match and not match(k)):
147 147 del c[k]
148 148 return c
149 149
@@ -166,7 +166,7 def _forwardcopies(a, b, match=None):
166 166 b = w.p1()
167 167 if a == b:
168 168 # short-circuit to avoid issues with merge states
169 return _dirstatecopies(w)
169 return _dirstatecopies(w, match)
170 170
171 171 # files might have to be traced back to the fctx parent of the last
172 172 # one-side-only changeset, but not further back than that
@@ -202,7 +202,7 def _forwardcopies(a, b, match=None):
202 202
203 203 # combine copies from dirstate if necessary
204 204 if w is not None:
205 cm = _chain(a, w, cm, _dirstatecopies(w))
205 cm = _chain(a, w, cm, _dirstatecopies(w, match))
206 206
207 207 return cm
208 208
General Comments 0
You need to be logged in to leave comments. Login now