mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 11:57:36 +00:00
(mh-recenter): Call `recenter' with arg t
if ARG is nil.
This commit is contained in:
parent
7901498008
commit
197a9dfdb5
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2001-10-23 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
|
||||
if ARG is nil.
|
||||
|
||||
* desktop.el (desktop-last-buffer): New variable.
|
||||
(desktop-create-buffer): Set it.
|
||||
(desktop-read): Bind it and switch to that buffer.
|
||||
|
|
|
|||
|
|
@ -447,7 +447,7 @@ Type \"\\[mh-header-display]\" to see the message with all its headers."
|
|||
;; window. (Commands like save-some-buffers can make this false.)
|
||||
(if (eq (get-buffer-window (current-buffer))
|
||||
(selected-window))
|
||||
(recenter (if arg arg '(t)))))
|
||||
(recenter (if arg arg t))))
|
||||
|
||||
|
||||
(defun mh-delete-line (lines)
|
||||
|
|
|
|||
Loading…
Reference in a new issue