Function: dframe-double-click
dframe-double-click is an interactive and byte-compiled function
defined in dframe.el.gz.
Signature
(dframe-double-click E)
Documentation
Activate the registered click function on a double click.
This must be bound to a mouse event. This should be bound to mouse event E.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-double-click (e)
"Activate the registered click function on a double click.
This must be bound to a mouse event.
This should be bound to mouse event E."
(interactive "e")
(cond ((eq (car e) 'down-mouse-1)
(dframe-mouse-set-point e))
((eq (car e) 'mouse-1)
(dframe-quick-mouse e))
((or (eq (car e) 'double-down-mouse-1)
(eq (car e) 'triple-down-mouse-1))
(dframe-click e))))