From 12b276c4d6bc1003a1863fb8201dd810ce20708f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 18 Oct 2019 22:20:50 -0400 Subject: [PATCH] Fix void-variable EMACS26+ issue By loading core-lib a little later, for now. --- core/core.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core.el b/core/core.el index 4b45544cd..0fe040f78 100644 --- a/core/core.el +++ b/core/core.el @@ -7,9 +7,6 @@ ;; Ensure `doom-core-dir' is in `load-path' (add-to-list 'load-path (file-name-directory load-file-name)) -;; Load the bare necessities -(require 'core-lib) - ;; ;;; Global variables @@ -128,6 +125,9 @@ users).") ;; ;;; Emacs core configuration +;; Load the bare necessities +(require 'core-lib) + ;; Reduce debug output, well, unless we've asked for it. (setq debug-on-error doom-debug-mode jka-compr-verbose doom-debug-mode)