Grep alias `all' shall not match parent directory
* lisp/progmodes/grep.el (grep-files-aliases): Don't match parent directory for `all'. Fixes bug#22577
This commit is contained in:
parent
cc6d906490
commit
856cd948d1
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue