Function: pages-previous-page
pages-previous-page is an interactive and byte-compiled function
defined in page-ext.el.gz.
Signature
(pages-previous-page &optional COUNT)
Documentation
Move to the previous page bounded by the page-delimiter variable.
With arg (prefix if interactive), move that many pages.
Key Bindings
Aliases
previous-page (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/page-ext.el.gz
(defun pages-previous-page (&optional count)
"Move to the previous page bounded by the `page-delimiter' variable.
With arg (prefix if interactive), move that many pages."
(interactive "p")
(or count (setq count 1))
(pages-next-page (- count)))