Function: custom-group-state-set-and-redraw

custom-group-state-set-and-redraw is a byte-compiled function defined in cus-edit.el.gz.

Signature

(custom-group-state-set-and-redraw WIDGET)

Documentation

Set state of group widget WIDGET and redraw with current settings.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defsubst custom-group-state-set-and-redraw (widget)
  "Set state of group widget WIDGET and redraw with current settings."
  (dolist (child (widget-get widget :children))
    (when (memq (widget-get child :custom-state) '(modified set))
      (widget-apply child :custom-state-set-and-redraw))))