]> git.eshelyaron.com Git - emacs.git/commitdiff
(mh-recenter): Call `recenter' with arg t
authorGerd Moellmann <gerd@gnu.org>
Tue, 23 Oct 2001 15:50:29 +0000 (15:50 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 23 Oct 2001 15:50:29 +0000 (15:50 +0000)
if ARG is nil.

lisp/ChangeLog
lisp/mail/mh-utils.el

index d0a8dcf24cf4b60287a21fb61bf3690fc361b1ee..ef6ad3e9906855e8004a2ba5cd394bc0054c43e0 100644 (file)
@@ -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.
index 51cc1b44ee2a4f6778598d7637101a563515bd30..2c65f88b50746197437038790d220714e227457d 100644 (file)
@@ -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)