Function: speedbar-next
speedbar-next is an interactive and byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-next ARG)
Documentation
Move to the next ARGth line in a speedbar buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-next (arg)
"Move to the next ARGth line in a speedbar buffer."
(interactive "p")
(forward-line (or arg 1))
(speedbar-item-info)
(speedbar-position-cursor-on-line))