Add internal doom-customize-theme-hook

Ensures custom-set-faces! take effect before any load-theme hooks.
This commit is contained in:
Henrik Lissner 2019-06-12 22:34:26 +02:00
parent 74a4700486
commit f3d8053933
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 3 additions and 2 deletions

View file

@ -477,7 +477,7 @@ Each face spec must be in the format of (FACE-NAME [:ATTRIBUTE VALUE]...).
Unlike `custom-set-faces', which destructively changes a face's spec, this one Unlike `custom-set-faces', which destructively changes a face's spec, this one
adjusts pre-existing ones." adjusts pre-existing ones."
`(add-hook `(add-hook
'doom-load-theme-hook 'doom-customize-theme-hook
(let ((fn (make-symbol "doom|init-custom-faces"))) (let ((fn (make-symbol "doom|init-custom-faces")))
(fset fn (fset fn
(lambda () (lambda ()

View file

@ -130,7 +130,8 @@ behavior). Do not set this directly, this is let-bound in `doom|init-theme'.")
"Set up `doom-load-theme-hook' to run after `load-theme' is called." "Set up `doom-load-theme-hook' to run after `load-theme' is called."
(unless no-enable (unless no-enable
(setq doom-theme theme) (setq doom-theme theme)
(run-hooks 'doom-load-theme-hook))) (run-hooks 'doom-customize-theme-hook
'doom-load-theme-hook)))
(defun doom|protect-fallback-buffer () (defun doom|protect-fallback-buffer ()
"Don't kill the scratch buffer. Meant for `kill-buffer-query-functions'." "Don't kill the scratch buffer. Meant for `kill-buffer-query-functions'."