mercurial/cmdutil.py
changeset 16381 64c8ae09162e
parent 16380 84ba30e8c790
child 16429 71dcce391a44
equal deleted inserted replaced
16380:84ba30e8c790 16381:64c8ae09162e
  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             """