diff options
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r-- | lisp/progmodes/grep.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index f811fce6e7f..062fce4c346 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -839,10 +839,10 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]." grep-find-template regexp (concat (shell-quote-argument "(") - " -name " + " " find-name-arg " " (mapconcat #'shell-quote-argument (split-string files) - " -o -name ") + (concat " -o " find-name-arg " ")) " " (shell-quote-argument ")")) dir |