Function: speedbar-show-info-under-mouse
speedbar-show-info-under-mouse is a byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-show-info-under-mouse)
Documentation
Call the info function for the line under the mouse.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-show-info-under-mouse ()
"Call the info function for the line under the mouse."
(let ((pos (mouse-position))) ; we ignore event until I use it later.
(if (equal (car pos) speedbar-frame)
(save-excursion
(save-window-excursion
(apply 'set-mouse-position pos)
(speedbar-item-info))))))