Function: custom-tag-mouse-down-action
custom-tag-mouse-down-action is a byte-compiled function defined in
cus-edit.el.gz.
Signature
(custom-tag-mouse-down-action WIDGET &rest ARGS)
Documentation
Pass :mouse-down-action to first child of WIDGET's parent.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defun custom-tag-mouse-down-action (widget &rest args)
"Pass :mouse-down-action to first child of WIDGET's parent."
(apply 'widget-apply (car (widget-get (widget-get widget :parent) :children))
:mouse-down-action args))