From 161da1415b0f1712940507d4796cda44810c41bb Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 19 Mar 2024 20:34:10 -0400 Subject: [PATCH] fix: invoke debugger for early-init.el-level errors --- early-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index bc6032b42..9d6778109 100644 --- a/early-init.el +++ b/early-init.el @@ -109,7 +109,7 @@ ;; I avoid `load's NOERROR argument because it suppresses other, ;; legitimate errors (like permission or IO errors), which gets ;; incorrectly interpreted as "this is not a Doom config". - (condition-case _ + (condition-case-unless-debug _ ;; Load the heart of Doom Emacs. (load (expand-file-name "lisp/doom" user-emacs-directory) nil (not init-file-debug) nil 'must-suffix)