From 55eecbac93496b9c48414c8e402bc708abd612f4 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Wed, 21 Aug 2024 13:23:11 -0400 Subject: [PATCH] Fix error when reassigning byte-compile-warnings --- init.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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