Fix custom-theme-set-faces with multiple themes
This commit is contained in:
parent
a022cfd705
commit
d79904d51f
1 changed files with 1 additions and 1 deletions
|
@ -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 ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue