Function: edt-page-backward
edt-page-backward is an interactive and byte-compiled function defined
in edt.el.gz.
Signature
(edt-page-backward NUM)
Documentation
Move backward to just after previous page delimiter.
Argument NUM is the number of page delimiters to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-page-backward (num)
"Move backward to just after previous page delimiter.
Argument NUM is the number of page delimiters to move."
(interactive "p")
(edt-check-prefix num)
(if (bobp)
(error "Beginning of buffer")
(progn
(backward-page num)
(edt-line-to-top-of-window))))