From: Richard M. Stallman Date: Fri, 28 Dec 2001 02:13:47 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: emacs-21.2~217 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a342360298265277d991257732277efd1e08946;p=emacs.git Fix previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4dd90aec51c..986190c9a2b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-12-26 Markus Rost + + * find-dired.el (find-dired-sentinel): Precede exit message by + two spaces, to match the regexp in dired-between-files. + 2001-12-26 Richard M. Stallman * progmodes/compile.el (compile-internal): diff --git a/lisp/find-dired.el b/lisp/find-dired.el index f8575fd5835..0b21c3c6370 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -232,7 +232,7 @@ Thus ARG can also contain additional grep options." (let ((buffer-read-only nil)) (save-excursion (goto-char (point-max)) - (insert "\n find " state) + (insert "\n find " state) (forward-char -1) ;Back up before \n at end of STATE. (insert " at " (substring (current-time-string) 0 19)) (forward-char 1)