mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add docstring to doom//byte-compile-core
This commit is contained in:
@ -659,7 +659,13 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
|
|||||||
(format "(%s ignored)" total-noop)))))))))
|
(format "(%s ignored)" total-noop)))))))))
|
||||||
|
|
||||||
(defun doom//byte-compile-core (&optional recompile-p)
|
(defun doom//byte-compile-core (&optional recompile-p)
|
||||||
""
|
"Byte compile the core Doom files.
|
||||||
|
|
||||||
|
This is faster than `doom//byte-compile', still yields considerable performance
|
||||||
|
benefits, and is more reliable in an ever-changing Emacs config (since you won't
|
||||||
|
likely change core files directly).
|
||||||
|
|
||||||
|
If RECOMPILE-P is non-nil, only recompile out-of-date core files."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(doom//byte-compile (list "core") recompile-p))
|
(doom//byte-compile (list "core") recompile-p))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user