From c64fcacd3dc84b7de5e81c4e3c89d714cebaf694 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 3 Feb 2025 09:46:38 -0500 Subject: [PATCH] The load function: set nosuffix to t to ensure the exact file is loaded. --- early-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 5c00f27..a6825cb 100644 --- a/early-init.el +++ b/early-init.el @@ -54,7 +54,7 @@ When set to non-nil, Emacs will automatically call `package-initialize' and (expand-file-name filename minimal-emacs-user-directory))) (when (file-exists-p user-init-file) - (load user-init-file nil t)))) + (load user-init-file nil t t)))) (minimal-emacs-load-user-init "pre-early-init.el")