Function: tpu-scroll-window-down

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

Signature

(tpu-scroll-window-down NUM)

Documentation

Scroll the display down to the next section.

A repeat count means scroll that many sections.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
;;;  Scrolling

(defun tpu-scroll-window-down (num)
  "Scroll the display down to the next section.
A repeat count means scroll that many sections."
  (interactive "p")
  (let* ((beg (tpu-current-line))
	 (height (1- (window-height)))
	 (lines (* num (/ (* height tpu-percent-scroll) 100))))
    (line-move (- lines))
    (tpu-top-check beg lines)))