]> git.eshelyaron.com Git - emacs.git/commitdiff
Grep alias `all' shall not match parent directory
authorOscar Fuentes <ofv@wanadoo.es>
Sun, 14 Feb 2016 15:14:33 +0000 (16:14 +0100)
committerOscar Fuentes <ofv@wanadoo.es>
Sun, 14 Feb 2016 15:20:16 +0000 (16:20 +0100)
* lisp/progmodes/grep.el (grep-files-aliases): Don't match parent
  directory for `all'. Fixes bug#22577

lisp/progmodes/grep.el

index 7e6f157f5feb330b51bfff5714637000b1af6857..f04a7226d1865d0ca569453b0379c5cec5abf287 100644 (file)
@@ -189,7 +189,7 @@ Customize or call the function `grep-apply-setting'."
   :group 'grep)
 
 (defcustom grep-files-aliases
-  '(("all" .   "* .*")
+  '(("all" .   "* .[!.]* ..?*") ;; Don't match `..'. See bug#22577
     ("el" .    "*.el")
     ("ch" .    "*.[ch]")
     ("c" .     "*.c")