Function: edt-page

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

Signature

(edt-page NUM)

Documentation

Move in current direction to next 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 (num)
  "Move in current direction to next page delimiter.
Argument NUM is the number of page delimiters to move."
  (interactive "p")
  (if (equal edt-direction-string edt-forward-string)
      (edt-page-forward num)
    (edt-page-backward num)))