cmdutil: rename _makelogfilematcher to _makefollowlogfilematcher stable
authorSiddharth Agarwal <sid0@fb.com>
Wed, 13 Aug 2014 15:15:13 -0700
branchstable
changeset 22166 ac7a3b2a85e3
parent 22147 9ac98c2aa95c
child 22167 d4bc38f6eab7
cmdutil: rename _makelogfilematcher to _makefollowlogfilematcher We're going to add a _makenofollowlogfilematcher in an upcoming patch.
mercurial/cmdutil.py
--- a/mercurial/cmdutil.py	Wed Aug 13 11:50:13 2014 -0700
+++ b/mercurial/cmdutil.py	Wed Aug 13 15:15:13 2014 -0700
@@ -1492,7 +1492,7 @@
 
     return iterate()
 
-def _makelogfilematcher(repo, files, followfirst):
+def _makefollowlogfilematcher(repo, files, followfirst):
     # When displaying a revision with --patch --follow FILE, we have
     # to know which file of the revision must be diffed. With
     # --follow, we want the names of the ancestors of FILE in the
@@ -1632,7 +1632,8 @@
         if follow and not match.always():
             # _makelogfilematcher expects its files argument to be relative to
             # the repo root, so use match.files(), not pats.
-            filematcher = _makelogfilematcher(repo, match.files(), followfirst)
+            filematcher = _makefollowlogfilematcher(repo, match.files(),
+                                                    followfirst)
         else:
             filematcher = lambda rev: match