From ed850fa06917c87dc1974f8c4cf381029551a1e5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 5 Mar 2017 15:50:05 -0500 Subject: [PATCH] Fix doom-init-p check in doom-initialize --- core/core-packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-packages.el b/core/core-packages.el index eac11f1e5..1495b53a2 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -107,7 +107,7 @@ base by `doom!' and for calculating how many packages exist.") are installed. If you byte-compile core/core.el, this function will be avoided to speed up startup." ;; Called early during initialization; only use native functions! - (unless (or doom-init-p force-p) + (when (or (not doom-init-p) force-p) (unless noninteractive (message "Doom initialized"))