aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2007-12-28 10:48:05 +0000
committerYAMAMOTO Mitsuharu2007-12-28 10:48:05 +0000
commitea7ac2eb953bf3c30670e60cb00a9fca611b38b7 (patch)
treea23b97b88272ca381d78695b569e09a5de1dbf7c /lisp
parent041817a467cbe693ea2268aaae92d5bddec52178 (diff)
downloademacs-ea7ac2eb953bf3c30670e60cb00a9fca611b38b7.tar.gz
emacs-ea7ac2eb953bf3c30670e60cb00a9fca611b38b7.zip
(rgrep): Fix last change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/grep.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 22bb4198dc7..a2054ecbf0f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-12-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * progmodes/grep.el (rgrep): Fix last change.
4
12007-12-27 Richard Stallman <rms@gnu.org> 52007-12-27 Richard Stallman <rms@gnu.org>
2 6
3 * progmodes/compile.el (compilation-start): Set initial visible 7 * progmodes/compile.el (compilation-start): Set initial visible
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]."
753 " " find-name-arg " " 753 " " find-name-arg " "
754 (mapconcat #'shell-quote-argument 754 (mapconcat #'shell-quote-argument
755 (split-string files) 755 (split-string files)
756 " -o " find-name-arg " ") 756 (concat " -o " find-name-arg " "))
757 " " 757 " "
758 (shell-quote-argument ")")) 758 (shell-quote-argument ")"))
759 dir 759 dir