diff --git a/init.el b/init.el index fbee6ed..1211971 100644 --- a/init.el +++ b/init.el @@ -139,11 +139,10 @@ (load user/early-init-file nil nil :no-suffix)) ;; Make sure that the user init files are byte-compiled. -(let ((byte-compile-warnings nil)) - (when (file-newer-than-file-p user/early-init-file (concat user/early-init-file "c")) - (byte-compile-file user/early-init-file)) - (when (file-newer-than-file-p user/init-file (concat user/init-file "c")) - (byte-compile-file user/init-file))) +(when (file-newer-than-file-p user/early-init-file (concat user/early-init-file "c")) + (byte-compile-file user/early-init-file)) +(when (file-newer-than-file-p user/init-file (concat user/init-file "c")) + (byte-compile-file user/init-file)) ;; ---------------------------------- ;; ;; Package manager initialization