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