diff options
| author | Richard M. Stallman | 2001-12-28 02:13:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-28 02:13:58 +0000 |
| commit | 0e842e15be10ba6aa0f1129d4786f11e3fe20201 (patch) | |
| tree | 42fe7a11c87c84231c8d9a80c8da0e730d4c4c0c | |
| parent | e63e3d5feb7266aac170b13aaeab6c7f9eecc8c5 (diff) | |
| download | emacs-0e842e15be10ba6aa0f1129d4786f11e3fe20201.tar.gz emacs-0e842e15be10ba6aa0f1129d4786f11e3fe20201.zip | |
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 @@ | |||
| 1 | 2001-12-27 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * help.el (describe-key): Doc fix. | ||
| 4 | |||
| 5 | 2001-12-26 Markus Rost <rost@math.ohio-state.edu> | ||
| 6 | |||
| 7 | * find-dired.el (find-dired-sentinel): Precede exit message by | ||
| 8 | two spaces, to match the regexp in dired-between-files. | ||
| 9 | |||
| 1 | 2001-12-28 Miles Bader <miles@gnu.org> | 10 | 2001-12-28 Miles Bader <miles@gnu.org> |
| 2 | 11 | ||
| 3 | * wid-edit.el (widget-toggle-value-create): Don't eval actual | 12 | * 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." | |||
| 232 | (let ((buffer-read-only nil)) | 232 | (let ((buffer-read-only nil)) |
| 233 | (save-excursion | 233 | (save-excursion |
| 234 | (goto-char (point-max)) | 234 | (goto-char (point-max)) |
| 235 | (insert "\n find " state) | 235 | (insert "\n find " state) |
| 236 | (forward-char -1) ;Back up before \n at end of STATE. | 236 | (forward-char -1) ;Back up before \n at end of STATE. |
| 237 | (insert " at " (substring (current-time-string) 0 19)) | 237 | (insert " at " (substring (current-time-string) 0 19)) |
| 238 | (forward-char 1) | 238 | (forward-char 1) |