Function: speedbar-prev

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

Signature

(speedbar-prev ARG)

Documentation

Move to the previous ARGth line in a speedbar buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-prev (arg)
  "Move to the previous ARGth line in a speedbar buffer."
  (interactive "p")
  (speedbar-next (if arg (- arg) -1)))