Show More
@@ -891,7 +891,7 b' def displaygraph(ui, repo, dag, displaye' | |||
|
891 | 891 | for rev, type, ctx, parents in dag: |
|
892 | 892 | char = formatnode(repo, ctx) |
|
893 | 893 | copies = None |
|
894 |
if getrenamed |
|
|
894 | if getrenamed: | |
|
895 | 895 | copies = [] |
|
896 | 896 | for fn in ctx.files(): |
|
897 | 897 | rename = getrenamed(fn, ctx.rev()) |
@@ -919,7 +919,7 b' def displayrevs(ui, repo, revs, displaye' | |||
|
919 | 919 | for rev in revs: |
|
920 | 920 | ctx = repo[rev] |
|
921 | 921 | copies = None |
|
922 |
if getrenamed is not None |
|
|
922 | if getrenamed is not None: | |
|
923 | 923 | copies = [] |
|
924 | 924 | for fn in ctx.files(): |
|
925 | 925 | rename = getrenamed(fn, rev) |
@@ -630,7 +630,6 b' using log status template (issue5155)' | |||
|
630 | 630 | b |
|
631 | 631 | R b |
|
632 | 632 | |
|
633 | BROKEN: as above, 'a' should be marked a copy | |
|
634 | 633 | $ hg log -GTstatus -r 'wdir()' -C |
|
635 | 634 | o changeset: 2147483647:ffffffffffff |
|
636 | 635 | | parent: 0:8c55c58b4c0e |
@@ -638,6 +637,7 b" BROKEN: as above, 'a' should be marked a" | |||
|
638 | 637 | date: * (glob) |
|
639 | 638 | files: |
|
640 | 639 | M a |
|
640 | b | |
|
641 | 641 | R b |
|
642 | 642 | |
|
643 | 643 |
General Comments 0
You need to be logged in to leave comments.
Login now