Function: speedbar-click

speedbar-click is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-click E)

Documentation

Activate any speedbar buttons where the mouse is clicked.

This must be bound to a mouse event. A button is any location of text with a mouse face that has a text property called speedbar-function. Argument E is the click event.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-click (e)
  "Activate any speedbar buttons where the mouse is clicked.
This must be bound to a mouse event.  A button is any location of text
with a mouse face that has a text property called `speedbar-function'.
Argument E is the click event."
  ;; Backward compatibility let statement.
  (let ((speedbar-power-click dframe-power-click))
    (speedbar-do-function-pointer))
  (dframe-quick-mouse e))