From 260a96cf501eaec7216f22115ec9dd75e31cc809 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 May 2017 00:20:49 +0200 Subject: [PATCH] Fix incorrect org version loaded in byte-compiled config --- core/core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index 0524d42a4..21829a6d9 100644 --- a/core/core.el +++ b/core/core.el @@ -155,7 +155,8 @@ enable multiple minor modes for the same regexp.") (require 'core-packages (concat doom-core-dir "core-packages"))) (eval-when-compile (doom-initialize)) - (setq load-path (eval-when-compile load-path)) + (setq load-path (eval-when-compile load-path) + doom--package-load-path (eval-when-compile doom--package-load-path)) ;;; Let 'er rip (require 'core-lib)