Function: widget-get-indirect

widget-get-indirect is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-get-indirect WIDGET PROPERTY)

Documentation

In WIDGET, get the value of PROPERTY.

If the value is a symbol, return its binding. Otherwise, just return the value.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-get-indirect (widget property)
  "In WIDGET, get the value of PROPERTY.
If the value is a symbol, return its binding.
Otherwise, just return the value."
  (let ((value (widget-get widget property)))
    (if (symbolp value)
	(symbol-value value)
      value)))