##// END OF EJS Templates
copies: inline _backwardrenames() in pathcopies()...
Martin von Zweigbergk -
r47395:324ded1a default
parent child Browse files
Show More
@@ -761,9 +761,12 b' def pathcopies(x, y, match=None):'
761 base = None
761 base = None
762 if a.rev() != nullrev:
762 if a.rev() != nullrev:
763 base = x
763 base = x
764 x_copies = _forwardcopies(a, x)
765 y_copies = _forwardcopies(a, y, base, match=match)
766 x_backward_renames = _reverse_renames(x_copies, x, match)
764 copies = _chain(
767 copies = _chain(
765 _backwardrenames(x, a, match=match),
768 x_backward_renames,
766 _forwardcopies(a, y, base, match=match),
769 y_copies,
767 )
770 )
768 _filter(x, y, copies)
771 _filter(x, y, copies)
769 return copies
772 return copies
General Comments 0
You need to be logged in to leave comments. Login now