projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc6d906
)
Grep alias `all' shall not match parent directory
author
Oscar Fuentes
<ofv@wanadoo.es>
Sun, 14 Feb 2016 15:14:33 +0000
(16:14 +0100)
committer
Oscar 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
patch
|
blob
|
history
diff --git
a/lisp/progmodes/grep.el
b/lisp/progmodes/grep.el
index 7e6f157f5feb330b51bfff5714637000b1af6857..f04a7226d1865d0ca569453b0379c5cec5abf287 100644
(file)
--- a/
lisp/progmodes/grep.el
+++ b/
lisp/progmodes/grep.el
@@
-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")