Add docstring to doom//byte-compile-core

This commit is contained in:
Henrik Lissner 2017-11-08 14:42:22 +01:00
parent 655f14a85d
commit b4f9087022
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -659,7 +659,13 @@ If RECOMPILE-P is non-nil, only recompile out-of-date files."
(format "(%s ignored)" total-noop)))))))))
(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")
(doom//byte-compile (list "core") recompile-p))