Variable: enable-theme-functions

enable-theme-functions is a customizable variable defined in custom.el.gz.

Value

nil

Documentation

Abnormal hook that is run after a theme has been enabled.

The functions in the hook are called with one parameter -- the
 name of the theme that's been enabled (as a symbol).

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/custom.el.gz
;;; Enabling and disabling loaded themes.

(defcustom enable-theme-functions nil
  "Abnormal hook that is run after a theme has been enabled.
The functions in the hook are called with one parameter -- the
 name of the theme that's been enabled (as a symbol)."
  :type 'hook
  :group 'customize
  :version "29.1")