Function: dframe-click

dframe-click is an interactive and byte-compiled function defined in dframe.el.gz.

Signature

(dframe-click E)

Documentation

Call our clients click function on a user click.

E is the event causing the click.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-click (e)
  "Call our clients click function on a user click.
E is the event causing the click."
  (interactive "e")
  (dframe-mouse-set-point e)
  (when dframe-mouse-click-function
    ;; On the off chance of buffer switch, or something incorrectly
    ;; configured.
    (funcall dframe-mouse-click-function e)))