]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Grep alias `all' shall not match parent directory"
authorÓscar Fuentes <ofv@wanadoo.es>
Wed, 8 Dec 2021 22:49:26 +0000 (23:49 +0100)
committerÓscar Fuentes <ofv@wanadoo.es>
Wed, 8 Dec 2021 22:52:39 +0000 (23:52 +0100)
This reverts commit 856cd948d1a5a016ad36721246a049d33451902f.

Emacs got better at quoting shell arguments and the original value
works correctly for vc-git-grep. At the same time, the value
introduced on that commit caused a regression on lgrep.

* lisp/progmodes/grep.el (grep-files-aliases): Use previous value for
`all'. Fixes bug#52367

lisp/progmodes/grep.el

index ec2850737c87515be611f9b477024a9f26a9a3c0..9be3af79f9dd8f94bd6033733dd247b18082f4ce 100644 (file)
@@ -203,7 +203,7 @@ by `grep-compute-defaults'; to change the default value, use
   :version "22.1")
 
 (defcustom grep-files-aliases
-  '(("all" .   "* .[!.]* ..?*") ;; Don't match `..'. See bug#22577
+  '(("all" .   "* .*")
     ("el" .    "*.el")
     ("ch" .    "*.[ch]")
     ("c" .     "*.c")