Fix #5009: custom-{,theme-}set-faces\! at startup

An erroneous check preventing these macros from taking effect any other
time but before your doom-theme has loaded.
This commit is contained in:
Henrik Lissner 2021-05-08 13:50:48 -04:00
parent 1c549f21d6
commit f3c496d295
2 changed files with 15 additions and 8 deletions

View file

@ -34,7 +34,12 @@ all themes. It will apply to all themes once they are loaded."
(apply #'custom-theme-set-faces theme
(mapcan #'doom--custom-theme-set-face
(list ,@specs)))))))
(unless doom-theme (funcall #',fn))
;; Apply the changes immediately if the user is using the default theme
;; or the theme has already loaded. This allows you to evaluate these
;; macros on the fly and customize your faces iteratively.
(when (or (get 'doom-theme 'previous-themes)
(null doom-theme))
(funcall #',fn))
;; TODO Append to `doom-load-theme-hook' with DEPTH instead when Emacs
;; 26.x support is dropped.
(add-hook 'doom-customize-theme-hook #',fn 'append))))