mercurial/commands.py
changeset 9687 c6da1cb3b255
parent 9679 a1943c2a4661
child 9689 57cee011ffcb
equal deleted inserted replaced
9686:ddf2adf88b89 9687:c6da1cb3b255
  2067                     copies.append((fn, rename[0]))
  2067                     copies.append((fn, rename[0]))
  2068 
  2068 
  2069         displayer.show(ctx, copies=copies)
  2069         displayer.show(ctx, copies=copies)
  2070 
  2070 
  2071     for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
  2071     for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
  2072         if count != limit:
  2072         if count == limit:
  2073             if displayer.flush(ctx.rev()):
  2073             break
  2074                 count += 1
  2074         if displayer.flush(ctx.rev()):
       
  2075             count += 1
  2075 
  2076 
  2076 def manifest(ui, repo, node=None, rev=None):
  2077 def manifest(ui, repo, node=None, rev=None):
  2077     """output the current or given revision of the project manifest
  2078     """output the current or given revision of the project manifest
  2078 
  2079 
  2079     Print a list of version controlled files for the given revision.
  2080     Print a list of version controlled files for the given revision.