Fix custom-theme-set-faces with multiple themes

This commit is contained in:
Henrik Lissner
2019-10-27 14:21:52 -04:00
parent a022cfd705
commit d79904d51f

View File

@ -16,7 +16,7 @@
THEME can be a single symbol or list thereof. If nil, apply these settings to 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." all themes. It will apply to all themes once they are loaded."
(declare (indent defun)) (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 "-"))))) (fn (gensym (format "doom--customize-%s-h-" (mapconcat #'symbol-name themes "-")))))
(fset (fset
fn (lambda () fn (lambda ()