Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
431e100f
Commit
431e100f
authored
Apr 25, 1994
by
Karl Heuer
Browse files
(rmail-summary-scroll-msg-up, rmail-summary-scroll-msg-down): Scroll
rmail-buffer explicitly
parent
06ef4a3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
lisp/mail/rmailsum.el
lisp/mail/rmailsum.el
+5
-4
No files found.
lisp/mail/rmailsum.el
View file @
431e100f
...
...
@@ -802,14 +802,15 @@ Commands for sorting the summary:
(
select-window
selwin
))))))
(
defun
rmail-summary-scroll-msg-up
(
&optional
dist
)
"Scroll
o
the
r
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
o
the
r
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
))))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment