diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-28 02:13:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-28 02:13:58 +0000 |
commit | 0e842e15be10ba6aa0f1129d4786f11e3fe20201 (patch) | |
tree | 42fe7a11c87c84231c8d9a80c8da0e730d4c4c0c | |
parent | e63e3d5feb7266aac170b13aaeab6c7f9eecc8c5 (diff) | |
download | emacs-0e842e15be10ba6aa0f1129d4786f11e3fe20201.tar.gz |
Fix previous change.
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/find-dired.el | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5c81402826a..9ea6426b563 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2001-12-27 Richard M. Stallman <rms@gnu.org> + + * help.el (describe-key): Doc fix. + +2001-12-26 Markus Rost <rost@math.ohio-state.edu> + + * find-dired.el (find-dired-sentinel): Precede exit message by + two spaces, to match the regexp in dired-between-files. + 2001-12-28 Miles Bader <miles@gnu.org> * wid-edit.el (widget-toggle-value-create): Don't eval actual 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) |