comparison mercurial/revset.py @ 23822:02f4560b69b7

filelog: fix backwards comment for 'backrevref'
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 12 Jan 2015 09:46:56 -0800
parents 7a7f437ab63d
children 4982fade9733
comparison
equal deleted inserted replaced
23821:7a7f437ab63d 23822:02f4560b69b7
797 else: 797 else:
798 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None]) 798 m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=repo[None])
799 files = (f for f in repo[None] if m(f)) 799 files = (f for f in repo[None] if m(f))
800 800
801 for f in files: 801 for f in files:
802 backrevref = {} # final value for: changerev -> filerev 802 backrevref = {} # final value for: filerev -> changerev
803 lowestchild = {} # lowest known filerev child of a filerev 803 lowestchild = {} # lowest known filerev child of a filerev
804 delayed = [] # filerev with filtered linkrev, for post-processing 804 delayed = [] # filerev with filtered linkrev, for post-processing
805 lowesthead = None # cache for manifest content of all head revisions 805 lowesthead = None # cache for manifest content of all head revisions
806 fl = repo.file(f) 806 fl = repo.file(f)
807 for fr in list(fl): 807 for fr in list(fl):