Function: edt-scroll-window

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

Signature

(edt-scroll-window NUM)

Documentation

Scroll one window in buffer, less one line, in current direction.

Argument NUM is the positive number of windows to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-scroll-window (num)
  "Scroll one window in buffer, less one line, in current direction.
Argument NUM is the positive number of windows to move."
  (interactive "p")
  (if (equal edt-direction-string edt-forward-string)
      (edt-scroll-window-forward num)
    (edt-scroll-window-backward num)))