Show More
@@ -761,9 +761,12 b' def pathcopies(x, y, match=None):' | |||
|
761 | 761 | base = None |
|
762 | 762 | if a.rev() != nullrev: |
|
763 | 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 | 767 | copies = _chain( |
|
765 |
_backwardrenames |
|
|
766 | _forwardcopies(a, y, base, match=match), | |
|
768 | x_backward_renames, | |
|
769 | y_copies, | |
|
767 | 770 | ) |
|
768 | 771 | _filter(x, y, copies) |
|
769 | 772 | return copies |
General Comments 0
You need to be logged in to leave comments.
Login now