From 58af4aef56469f3f495129b4e7d947553f420fca Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 18 Aug 2020 02:51:25 -0400 Subject: [PATCH] Fix #3772 (again): void-variable comp-eln-load-path --- core/core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index 5f6a96f4c..6901804a9 100644 --- a/core/core.el +++ b/core/core.el @@ -288,7 +288,7 @@ config.el instead." (setq comp-async-env-modifier-form `(progn ,comp-async-env-modifier-form - (setq comp-eln-load-path ',comp-eln-load-path))) + (setq comp-eln-load-path ',(bound-and-true-p comp-eln-load-path)))) ;; HACK Disable native-compilation for some troublesome packages (add-to-list 'comp-deferred-compilation-black-list "/evil-collection-vterm\\.el\\'"))