From e61af323071e16740e8645a0cb79c8364b906c76 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 25 Sep 2022 13:08:11 +0200 Subject: [PATCH] fix: early-init: wrong-type-argument stringp nil early-init-file is nil in most cases, at this point, so use user-init-file instead. --- early-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 81f891720..252ef19bf 100644 --- a/early-init.el +++ b/early-init.el @@ -115,6 +115,6 @@ nil)) ;; Then continue on to the config/profile we want to load. - (load early-init-file 'noerror (not init-file-debug) nil 'must-suffix)) + (load user-init-file 'noerror (not init-file-debug) nil 'must-suffix)) ;;; early-init.el ends here