mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Prevent kill-emacs-hook running after byte-compile
Prevents harmless errors after byte-compiling, or recentf needlessly saving its cache to file.
This commit is contained in:
@ -739,7 +739,9 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
|
|||||||
;; Assemble el files we want to compile; taking into account that
|
;; Assemble el files we want to compile; taking into account that
|
||||||
;; MODULES may be a list of MODULE/SUBMODULE strings from the command
|
;; MODULES may be a list of MODULE/SUBMODULE strings from the command
|
||||||
;; line.
|
;; line.
|
||||||
(let ((target-files (doom-files-in targets :depth 1 :match "\\.el$")))
|
(let ((target-files (doom-files-in targets :depth 1 :match "\\.el$"))
|
||||||
|
(load-path load-path)
|
||||||
|
kill-emacs-hook kill-buffer-query-functions)
|
||||||
(unless target-files
|
(unless target-files
|
||||||
(if targets
|
(if targets
|
||||||
(message "Couldn't find any valid targets")
|
(message "Couldn't find any valid targets")
|
||||||
|
Reference in New Issue
Block a user