Function: mh-page-msg
mh-page-msg is an autoloaded, interactive and byte-compiled function
defined in mh-folder.el.gz.
Signature
(mh-page-msg &optional LINES)
Documentation
Display next page in message.
You can give this command a prefix argument that specifies the number of LINES to scroll. This command will also show the next undeleted message if it is used at the bottom of a message.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-page-msg (&optional lines)
"Display next page in message.
You can give this command a prefix argument that specifies the
number of LINES to scroll. This command will also show the next
undeleted message if it is used at the bottom of a message."
(interactive "P")
(if mh-showing-mode
(if mh-page-to-next-msg-flag
(if (equal mh-next-direction 'backward)
(mh-previous-undeleted-msg)
(mh-next-undeleted-msg))
(if (mh-in-show-buffer (mh-show-buffer)
(pos-visible-in-window-p (point-max)))
(progn
(message
"End of message (Type %s to read %s undeleted message)"
(single-key-description last-input-event)
(if (equal mh-next-direction 'backward)
"previous"
"next"))
(setq mh-page-to-next-msg-flag t))
(scroll-other-window lines)))
(mh-show)))