diff options
| -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 baa59c764fd..ecc386404c6 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -750,10 +750,10 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]." | |||
| 750 | grep-find-template | 750 | grep-find-template |
| 751 | regexp | 751 | regexp |
| 752 | (concat (shell-quote-argument "(") | 752 | (concat (shell-quote-argument "(") |
| 753 | " -name " | 753 | " " find-name-arg " " |
| 754 | (mapconcat #'shell-quote-argument | 754 | (mapconcat #'shell-quote-argument |
| 755 | (split-string files) | 755 | (split-string files) |
| 756 | " -o -name ") | 756 | " -o " find-name-arg " ") |
| 757 | " " | 757 | " " |
| 758 | (shell-quote-argument ")")) | 758 | (shell-quote-argument ")")) |
| 759 | dir | 759 | dir |