From: Mauro Aranda Date: Sun, 9 Mar 2025 12:22:29 +0000 (-0300) Subject: Allow changing theme settings without reloading it X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b9a0d4924406a4659bc290d2956126f259e87d2;p=emacs.git Allow changing theme settings without reloading it * lisp/custom.el (custom--should-apply-setting): Return non-nil for an enabled theme. Provide docstring. This allows for users to reevaluate a custom-theme-set-* function and see the settings applied right away. (Bug#76685) (custom--inhibit-theme-enable): Adapt docstring. * etc/NEWS: Announce the new behavior. (cherry picked from commit 203747b87fbf976fda887d0652b05685447b8d65) --- diff --git a/lisp/custom.el b/lisp/custom.el index 99929fbf40e..1cbc1f53eed 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -900,7 +900,15 @@ to the front of this list.") (error "Unknown theme `%s'" theme))) (defun custom--should-apply-setting (theme) - (or (null custom--inhibit-theme-enable) + "Non-nil if settings for the theme THEME should apply immediately. + +Theme settings apply immediately if: +- THEME is already enabled. +- THEME is being enabled via `enable-theme' or an interactive call to + `load-theme'. +- THEME is the `user' theme." + (or (memq theme custom-enabled-themes) + (null custom--inhibit-theme-enable) (and (eq custom--inhibit-theme-enable 'apply-only-user) (eq theme 'user)))) @@ -1234,6 +1242,10 @@ external packages). For manual user customizations, use (defvar custom--inhibit-theme-enable 'apply-only-user "Whether the custom-theme-set-* functions act immediately. + +If the theme argument for those functions is an already enabled theme, +the theme settings always apply immediately, ignoring this variable. + If nil, `custom-theme-set-variables' and `custom-theme-set-faces' change the current values of the given variable or face. If t, they just make a record of the theme settings. If the