Function: gnus-group-customize-done
gnus-group-customize-done is an interactive and byte-compiled function
defined in gnus-cus.el.gz.
Signature
(gnus-group-customize-done &rest IGNORE)
Documentation
Apply changes and bury the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cus.el.gz
(defun gnus-group-customize-done (&rest _ignore)
"Apply changes and bury the buffer."
(interactive nil gnus-custom-mode)
(let ((params (widget-value gnus-custom-params)))
(if gnus-custom-topic
(gnus-topic-set-parameters gnus-custom-topic params)
(gnus-group-edit-group-done 'params gnus-custom-group params)
(gnus-group-edit-group-done 'method gnus-custom-group
(widget-value gnus-custom-method)))
(bury-buffer)))