log: drop dead code to concatenate --line-range patterns and pats
authorYuya Nishihara <yuya@tcha.org>
Sun, 21 Jan 2018 15:50:24 +0900
changeset 36006 f113ac0750f3
parent 36005 dd77e36eabb6
child 36007 29b83c08afe0
log: drop dead code to concatenate --line-range patterns and pats It's disabled since 2e45bbd3db7b, and the current implementation is unlikely to be reused.
mercurial/commands.py
--- a/mercurial/commands.py	Sun Jan 21 15:34:37 2018 +0900
+++ b/mercurial/commands.py	Sun Jan 21 15:50:24 2018 +0900
@@ -3428,20 +3428,9 @@
         return logcmdutil.graphlog(ui, repo, revs, filematcher, opts)
 
     if linerange:
-        revs, lrfilematcher, hunksfilter = logcmdutil.getlinerangerevs(
+        revs, filematcher, hunksfilter = logcmdutil.getlinerangerevs(
             repo, revs, opts)
 
-        if filematcher is not None:
-            basefilematcher = filematcher
-
-            def filematcher(rev):
-                files = (basefilematcher(rev).files()
-                         + lrfilematcher(rev).files())
-                return scmutil.matchfiles(repo, files)
-
-        elif filematcher is None:
-            filematcher = lrfilematcher
-
     getrenamed = None
     if opts.get('copies'):
         endrev = None