mercurial/commands.py
changeset 29119 a032ebea4e97
parent 29086 fe50341de1ff
child 29176 8c8442523eef
equal deleted inserted replaced
29118:8c295c3b2ce2 29119:a032ebea4e97
  3512         tree = newtree
  3512         tree = newtree
  3513         newtree = revset.foldconcat(tree)
  3513         newtree = revset.foldconcat(tree)
  3514         if newtree != tree:
  3514         if newtree != tree:
  3515             ui.note("* concatenated:\n", revset.prettyformat(newtree), "\n")
  3515             ui.note("* concatenated:\n", revset.prettyformat(newtree), "\n")
  3516         if opts["optimize"]:
  3516         if opts["optimize"]:
  3517             weight, optimizedtree = revset.optimize(newtree, True)
  3517             optimizedtree = revset.optimize(newtree)
  3518             ui.note("* optimized:\n", revset.prettyformat(optimizedtree), "\n")
  3518             ui.note("* optimized:\n", revset.prettyformat(optimizedtree), "\n")
  3519     func = revset.match(ui, expr, repo)
  3519     func = revset.match(ui, expr, repo)
  3520     revs = func(repo)
  3520     revs = func(repo)
  3521     if ui.verbose:
  3521     if ui.verbose:
  3522         ui.note("* set:\n", revset.prettyformatset(revs), "\n")
  3522         ui.note("* set:\n", revset.prettyformatset(revs), "\n")