Variable: custom-theme-choose-mode-abbrev-table
custom-theme-choose-mode-abbrev-table is a variable defined in
cus-theme.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for custom-theme-choose-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-theme.el.gz
(define-derived-mode custom-theme-choose-mode special-mode "Themes"
"Major mode for selecting Custom themes.
Do not call this mode function yourself. It is meant for internal use."
(use-local-map custom-theme-choose-mode-map)
(custom--initialize-widget-variables)
(setq-local revert-buffer-function
(lambda (_ignore-auto noconfirm)
(when (or noconfirm (y-or-n-p "Discard current choices? "))
(customize-themes (current-buffer))))))