From ea7ac2eb953bf3c30670e60cb00a9fca611b38b7 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 28 Dec 2007 10:48:05 +0000 Subject: [PATCH] (rgrep): Fix last change. --- lisp/ChangeLog | 4 ++++ lisp/progmodes/grep.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22bb4198dc7..a2054ecbf0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-12-28 YAMAMOTO Mitsuharu + + * progmodes/grep.el (rgrep): Fix last change. + 2007-12-27 Richard Stallman * 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]." " " find-name-arg " " (mapconcat #'shell-quote-argument (split-string files) - " -o " find-name-arg " ") + (concat " -o " find-name-arg " ")) " " (shell-quote-argument ")")) dir -- 2.39.2