Function: backward-page

backward-page is an interactive and byte-compiled function defined in page.el.gz.

Signature

(backward-page &optional COUNT)

Documentation

Move backward to page boundary. With arg, repeat, or go fwd if negative.

A page boundary is any line whose beginning matches the regexp page-delimiter.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/page.el.gz
(defun backward-page (&optional count)
  "Move backward to page boundary.  With arg, repeat, or go fwd if negative.
A page boundary is any line whose beginning matches the regexp
`page-delimiter'."
  (interactive "p")
  (or count (setq count 1))
  (forward-page (- count)))