# HG changeset patch # User Karl Heuer # Date 767315472 0 # Node ID e3d392f28d8fc2de2acfcbbedeb507500a6802bf # Parent e7afa8046b41561b015045d378b5aaebe907ff25 (rmail-summary-scroll-msg-up, rmail-summary-scroll-msg-down): Scroll rmail-buffer explicitly diff -r e7afa8046b41 -r e3d392f28d8f lisp/mail/rmailsum.el --- a/lisp/mail/rmailsum.el Mon Apr 25 22:55:33 1994 +0000 +++ b/lisp/mail/rmailsum.el Mon Apr 25 23:11:12 1994 +0000 @@ -802,14 +802,15 @@ (select-window selwin)))))) (defun rmail-summary-scroll-msg-up (&optional dist) - "Scroll other window forward." + "Scroll the Rmail window forward." (interactive "P") - (scroll-other-window dist)) + (let ((other-window-scroll-buffer rmail-buffer)) + (scroll-other-window dist))) (defun rmail-summary-scroll-msg-down (&optional dist) - "Scroll other window backward." + "Scroll the Rmail window backward." (interactive "P") - (scroll-other-window + (rmail-summary-scroll-msg-up (cond ((eq dist '-) nil) ((null dist) '-) (t (- (prefix-numeric-value dist))))))