From 58b723bc54e4729b70fa2e2eafff6fec276acf10 Mon Sep 17 00:00:00 2001 From: Josh Seba Date: Thu, 12 Jul 2018 16:32:07 -0700 Subject: [PATCH] Load early-init.el if early-init-file is not bound *and* true For Emacs 27, the symbol is still bound when using -Q, which means it won't be loaded from bin/doom. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 0b3b905e0..07e42f0a2 100644 --- a/init.el +++ b/init.el @@ -27,7 +27,7 @@ ;; ;;; License: MIT -(unless (boundp 'early-init-file) +(unless (bound-and-true-p early-init-file) (load (concat (file-name-directory load-file-name) "early-init") nil t))