Function: widget-parent-action

widget-parent-action is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-parent-action WIDGET &optional EVENT)

Documentation

Tell :parent of WIDGET to handle the :action.

Optional EVENT is the event that triggered the action.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
;;; Widget Functions
;;
;; These functions are used in the definition of multiple widgets.

(defun widget-parent-action (widget &optional event)
  "Tell :parent of WIDGET to handle the :action.
Optional EVENT is the event that triggered the action."
  (widget-apply (widget-get widget :parent) :action event))