equal
deleted
inserted
replaced
780 ssets = successorssets(repo, ctx.node(), closest=True) |
780 ssets = successorssets(repo, ctx.node(), closest=True) |
781 |
781 |
782 # closestsuccessors returns an empty list for pruned revisions, remap it |
782 # closestsuccessors returns an empty list for pruned revisions, remap it |
783 # into a list containing an empty list for future processing |
783 # into a list containing an empty list for future processing |
784 if ssets == []: |
784 if ssets == []: |
785 ssets = [[]] |
785 ssets = [_succs()] |
786 |
786 |
787 # Try to recover pruned markers |
787 # Try to recover pruned markers |
788 succsmap = repo.obsstore.successors |
788 succsmap = repo.obsstore.successors |
789 fullsuccessorsets = [] # successor set + markers |
789 fullsuccessorsets = [] # successor set + markers |
790 for sset in ssets: |
790 for sset in ssets: |