grep: search all commits in allfiles mode
authorSangeet Kumar Mishra <mail2sangeetmishra@gmail.com>
Wed, 08 Aug 2018 19:29:02 +0530
changeset 38960 d99468d2b09a
parent 38959 0d032756e9bf
child 38961 19344143b3e1
grep: search all commits in allfiles mode All the commits are added to the 'wanted' set when allfiles mode is enabled. Differential Revision: https://phab.mercurial-scm.org/D4157
mercurial/cmdutil.py
tests/test-grep.t
--- a/mercurial/cmdutil.py	Wed Aug 08 17:07:27 2018 -0700
+++ b/mercurial/cmdutil.py	Wed Aug 08 19:29:02 2018 +0530
@@ -1899,7 +1899,7 @@
     # wanted: a cache of filenames that were changed (ctx.files()) and that
     # match the file filtering conditions.
 
-    if match.always():
+    if match.always() or allfiles:
         # No files, no patterns.  Display all revs.
         wanted = revs
     elif not slowpath:
--- a/tests/test-grep.t	Wed Aug 08 17:07:27 2018 -0700
+++ b/tests/test-grep.t	Wed Aug 08 19:29:02 2018 +0530
@@ -500,4 +500,8 @@
   $ hg grep -r "0:2" "unmod" --all-files
   um:0:unmod
   um:1:unmod
+  $ hg grep -r "0:2" "unmod" --all-files um
+  um:0:unmod
+  um:1:unmod
   $ cd ..
+