Function: widget-value
widget-value is an autoloaded and byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-value WIDGET)
Documentation
Extract the current value of WIDGET.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-value (widget)
"Extract the current value of WIDGET."
(widget-apply widget
:value-to-external (widget-apply widget :value-get)))