Function: custom-group-mark-to-reset-standard
custom-group-mark-to-reset-standard is a byte-compiled function
defined in cus-edit.el.gz.
Signature
(custom-group-mark-to-reset-standard WIDGET)
Documentation
Mark to reset all modified, set, or saved group members.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defun custom-group-mark-to-reset-standard (widget)
"Mark to reset all modified, set, or saved group members."
(dolist (child (widget-get widget :children))
(when (memq (widget-get child :custom-state)
'(modified set saved))
(widget-apply child :custom-mark-to-reset-standard))))