From d79904d51fc82dbcbe54db0581211532e5cff7f5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 27 Oct 2019 14:21:52 -0400 Subject: [PATCH] Fix custom-theme-set-faces with multiple themes --- 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 e6f74c80a..8a85d2d11 100644 --- a/core/autoload/themes.el +++ b/core/autoload/themes.el @@ -16,7 +16,7 @@ THEME can be a single symbol or list thereof. If nil, apply these settings to all themes. It will apply to all themes once they are loaded." (declare (indent defun)) - `(let* ((themes (doom-enlist (or (list ,theme) 'user))) + `(let* ((themes (doom-enlist (or ,theme 'user))) (fn (gensym (format "doom--customize-%s-h-" (mapconcat #'symbol-name themes "-"))))) (fset fn (lambda ()