diff options
| author | Gerd Moellmann | 2001-10-23 15:50:29 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-23 15:50:29 +0000 |
| commit | 197a9dfdb5c82014aa67a754f6aefbb3bc47d369 (patch) | |
| tree | 2ba6be0164eeaeb3814d2d9efae3f1e08f834be5 /lisp | |
| parent | 7901498008a117480d1c502f95b106b337edd6ef (diff) | |
| download | emacs-197a9dfdb5c82014aa67a754f6aefbb3bc47d369.tar.gz emacs-197a9dfdb5c82014aa67a754f6aefbb3bc47d369.zip | |
(mh-recenter): Call `recenter' with arg t
if ARG is nil.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/mail/mh-utils.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d0a8dcf24cf..ef6ad3e9906 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-10-23 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-10-23 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t | ||
| 4 | if ARG is nil. | ||
| 5 | |||
| 3 | * desktop.el (desktop-last-buffer): New variable. | 6 | * desktop.el (desktop-last-buffer): New variable. |
| 4 | (desktop-create-buffer): Set it. | 7 | (desktop-create-buffer): Set it. |
| 5 | (desktop-read): Bind it and switch to that buffer. | 8 | (desktop-read): Bind it and switch to that buffer. |
diff --git a/lisp/mail/mh-utils.el b/lisp/mail/mh-utils.el index 51cc1b44ee2..2c65f88b507 100644 --- a/lisp/mail/mh-utils.el +++ b/lisp/mail/mh-utils.el | |||
| @@ -447,7 +447,7 @@ Type \"\\[mh-header-display]\" to see the message with all its headers." | |||
| 447 | ;; window. (Commands like save-some-buffers can make this false.) | 447 | ;; window. (Commands like save-some-buffers can make this false.) |
| 448 | (if (eq (get-buffer-window (current-buffer)) | 448 | (if (eq (get-buffer-window (current-buffer)) |
| 449 | (selected-window)) | 449 | (selected-window)) |
| 450 | (recenter (if arg arg '(t))))) | 450 | (recenter (if arg arg t)))) |
| 451 | 451 | ||
| 452 | 452 | ||
| 453 | (defun mh-delete-line (lines) | 453 | (defun mh-delete-line (lines) |