equal
deleted
inserted
replaced
1004 if not slowpath and not match.files(): |
1004 if not slowpath and not match.files(): |
1005 # No files, no patterns. Display all revs. |
1005 # No files, no patterns. Display all revs. |
1006 wanted = set(revs) |
1006 wanted = set(revs) |
1007 copies = [] |
1007 copies = [] |
1008 |
1008 |
1009 if not slowpath: |
1009 if not slowpath and match.files(): |
1010 # We only have to read through the filelog to find wanted revisions |
1010 # We only have to read through the filelog to find wanted revisions |
1011 |
1011 |
1012 minrev, maxrev = min(revs), max(revs) |
1012 minrev, maxrev = min(revs), max(revs) |
1013 def filerevgen(filelog, last): |
1013 def filerevgen(filelog, last): |
1014 """ |
1014 """ |