Function: widget-value-set

widget-value-set is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-value-set WIDGET VALUE)

Documentation

Set the current value of WIDGET to VALUE.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-value-set (widget value)
  "Set the current value of WIDGET to VALUE."
  (widget-apply widget
		:value-set (widget-apply widget
					 :value-to-internal value)))