From fcbd91fc0dec91e197b83d53984d0c174a627ac2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 22 Nov 2019 13:13:00 -0500 Subject: [PATCH] Fix custom-set-theme-faces! applying only to 'user --- core/autoload/themes.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/themes.el b/core/autoload/themes.el index 363c4b33c..a0740e487 100644 --- a/core/autoload/themes.el +++ b/core/autoload/themes.el @@ -22,7 +22,7 @@ all themes. It will apply to all themes once they are loaded." (dolist (theme (doom-enlist (or ,theme 'user))) (when (or (eq theme 'user) (custom-theme-enabled-p theme)) - (apply #'custom-theme-set-faces 'user + (apply #'custom-theme-set-faces theme (mapcan #'doom--custom-theme-set-face (list ,@specs))))))) (when (or doom-init-theme-p (null doom-theme))