From f23a833f3120e8221b7a4168f0e56f44c56d810a Mon Sep 17 00:00:00 2001 From: Andrew Whatson Date: Sun, 15 Sep 2019 02:09:58 +1000 Subject: [PATCH] Fix the multi-face form of custom-set-faces! --- 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 ef9d9a4b5..475de2816 100644 --- a/core/autoload/themes.el +++ b/core/autoload/themes.el @@ -4,7 +4,7 @@ (cond ((listp (car spec)) (cl-loop for face in (car spec) collect - (doom--custom-theme-set-face `(,face ,(cdr spec))))) + (car (doom--custom-theme-set-face (cons face (cdr spec)))))) ((keywordp (cadr spec)) `((,(car spec) ((t ,(cdr spec)))))) (`((,(car spec) ,(cdr spec))))))