Function: tpu-page

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

Signature

(tpu-page NUM)

Documentation

Move to the next page in the current direction.

A repeat count means move that many pages.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
;;;  Movement by page

(defun tpu-page (num)
  "Move to the next page in the current direction.
A repeat count means move that many pages."
  (interactive "p")
  (tpu-with-position
   (if tpu-advance
       (progn
         (forward-page num)
         (if (> (point) far)
               (if (zerop (setq left (save-excursion (forward-line height))))
                   (recenter top-margin)
                 (recenter (- left bottom-up-margin)))
           (and (> (point) bottom) (recenter bottom-margin))))
     (backward-page num)
     (and (< (point) top) (recenter (min beg top-margin))))))