Show More
@@ -464,9 +464,10 b' def copied(mctx, x):' | |||
|
464 | 464 | getargs(x, 0, 0, _("copied takes no arguments")) |
|
465 | 465 | s = [] |
|
466 | 466 | for f in mctx.subset: |
|
467 |
|
|
|
468 | if p and p[0].path() != f: | |
|
469 | s.append(f) | |
|
467 | if f in mctx.ctx: | |
|
468 | p = mctx.ctx[f].parents() | |
|
469 | if p and p[0].path() != f: | |
|
470 | s.append(f) | |
|
470 | 471 | return s |
|
471 | 472 | |
|
472 | 473 | @predicate('revs(revs, pattern)') |
General Comments 0
You need to be logged in to leave comments.
Login now