Function: tpu-scroll-window

tpu-scroll-window is an interactive and byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-scroll-window NUM)

Documentation

Scroll the display to the next section in the current direction.

A repeat count means scroll that many sections.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;;  Scrolling and movement within the buffer
;;;
(defun tpu-scroll-window (num)
  "Scroll the display to the next section in the current direction.
A repeat count means scroll that many sections."
  (interactive "p")
  (if tpu-advance (tpu-scroll-window-up num) (tpu-scroll-window-down num)))