mercurial/commands.py
changeset 29921 a82e138d5249
parent 29914 770128405002
child 29922 ae933e3e2226
--- a/mercurial/commands.py	Mon Sep 12 03:06:29 2016 +0900
+++ b/mercurial/commands.py	Sun Aug 21 12:45:43 2016 +0900
@@ -3525,7 +3525,8 @@
     """
     stages = [
         ('parsed', lambda tree: tree),
-        ('expanded', lambda tree: revset.expandaliases(ui, tree)),
+        ('expanded',
+         lambda tree: revset.expandaliases(ui, tree, showwarning=ui.warn)),
         ('concatenated', revset.foldconcat),
         ('analyzed', revset.analyze),
         ('optimized', revset.optimize),
@@ -3560,7 +3561,7 @@
             ui.write(revset.prettyformat(tree), "\n")
             printedtree = tree
 
-    func = revset.match(ui, expr, repo)
+    func = revset.makematcher(tree)
     revs = func(repo)
     if ui.verbose:
         ui.note(("* set:\n"), revset.prettyformatset(revs), "\n")