Fix error when reassigning byte-compile-warnings
This commit is contained in:
parent
936f21330f
commit
55eecbac93
9
init.el
9
init.el
@ -139,11 +139,10 @@
|
|||||||
(load user/early-init-file nil nil :no-suffix))
|
(load user/early-init-file nil nil :no-suffix))
|
||||||
|
|
||||||
;; Make sure that the user init files are byte-compiled.
|
;; 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"))
|
||||||
(when (file-newer-than-file-p user/early-init-file (concat user/early-init-file "c"))
|
(byte-compile-file user/early-init-file))
|
||||||
(byte-compile-file user/early-init-file))
|
(when (file-newer-than-file-p user/init-file (concat user/init-file "c"))
|
||||||
(when (file-newer-than-file-p user/init-file (concat user/init-file "c"))
|
(byte-compile-file user/init-file))
|
||||||
(byte-compile-file user/init-file)))
|
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; Package manager initialization
|
;; Package manager initialization
|
||||||
|
Loading…
Reference in New Issue
Block a user