mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(rmail-summary-scroll-msg-up, rmail-summary-scroll-msg-down): Scroll
rmail-buffer explicitly
This commit is contained in:
parent
06ef4a3f7e
commit
431e100fd1
1 changed files with 5 additions and 4 deletions
|
|
@ -802,14 +802,15 @@ Commands for sorting the summary:
|
|||
(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))))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue