diff --git a/modules/config/literate/config.el b/modules/config/literate/config.el index 328a1fa89..05e2a870e 100644 --- a/modules/config/literate/config.el +++ b/modules/config/literate/config.el @@ -18,6 +18,7 @@ non-nil, load it too!" (elc (concat +literate-config-dest-file "c"))) ;; If config is pre-compiled, then load that (when (file-newer-than-file-p org elc) + (message "Compiling your literate config...") ;; We tangle in a separate, blank process because loading it here would load ;; all of :lang org, which will be more expensive than it needs to be. (or (zerop (call-process @@ -28,7 +29,8 @@ non-nil, load it too!" (error "There was a problem tangling your literate config!")) ;; Then byte-compile it! (require 'bytecomp) - (byte-compile-file +literate-config-dest-file load)))) + (byte-compile-file +literate-config-dest-file load) + (message "Done!")))) ;; Let 'er rip! (+literate-compile)