diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2007-12-28 10:48:05 +0000 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2007-12-28 10:48:05 +0000 |
commit | ea7ac2eb953bf3c30670e60cb00a9fca611b38b7 (patch) | |
tree | a23b97b88272ca381d78695b569e09a5de1dbf7c /lisp/progmodes/grep.el | |
parent | 041817a467cbe693ea2268aaae92d5bddec52178 (diff) | |
download | emacs-ea7ac2eb953bf3c30670e60cb00a9fca611b38b7.tar.gz |
(rgrep): Fix last change.
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r-- | lisp/progmodes/grep.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index ecc386404c6..433c2705cd5 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -753,7 +753,7 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]." " " find-name-arg " " (mapconcat #'shell-quote-argument (split-string files) - " -o " find-name-arg " ") + (concat " -o " find-name-arg " ")) " " (shell-quote-argument ")")) dir |