From b245abfe72b9bcd0ee9b9523883baf7b5a08e4e6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 6 Oct 2020 14:38:32 -0400 Subject: [PATCH] Set comp-deferred-compilation in early-init.el Seems it's necessary for some and not others. The emacs experience(TM). --- early-init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/early-init.el b/early-init.el index cf3138571..db3139da4 100644 --- a/early-init.el +++ b/early-init.el @@ -26,3 +26,8 @@ ;; in this file and can conflict with later config (particularly where the ;; cursor color is concerned). (advice-add #'x-apply-session-resources :override #'ignore) + +;; Prevent unwanted runtime builds in gccemacs (native-comp); packages are +;; compiled ahead-of-time when they are installed and site files are compiled +;; when gccemacs is installed. +(setq comp-deferred-compilation nil)