Function: speedbar-scroll-up

speedbar-scroll-up is an interactive and byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-scroll-up &optional ARG)

Documentation

Page down one screen-full of the speedbar, or ARG lines.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-scroll-up (&optional arg)
  "Page down one screen-full of the speedbar, or ARG lines."
  (interactive "P")
  (scroll-up arg)
  (speedbar-position-cursor-on-line))