Function: mh-previous-page
mh-previous-page is an autoloaded, interactive and byte-compiled
function defined in mh-folder.el.gz.
Signature
(mh-previous-page &optional LINES)
Documentation
Display next page in message.
You can give this command a prefix argument that specifies the number of LINES to scroll.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-previous-page (&optional lines)
"Display next page in message.
You can give this command a prefix argument that specifies the
number of LINES to scroll."
(interactive "P")
(mh-in-show-buffer (mh-show-buffer)
(scroll-down lines)))