Function: gnus-score-customize-done
gnus-score-customize-done is a byte-compiled function defined in
gnus-cus.el.gz.
Signature
(gnus-score-customize-done &rest IGNORE)
Documentation
Reset the score alist with the present value.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cus.el.gz
(defun gnus-score-customize-done (&rest _ignore)
"Reset the score alist with the present value."
(let ((alist gnus-custom-score-alist)
(value (widget-value gnus-custom-scores)))
(setcar alist (car value))
(setcdr alist (cdr value))
(gnus-score-set 'touched '(t) alist))
(bury-buffer))