From dfea21b41f4f8ee2ffe22db0d015b58754e47dd9 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 20 Oct 2025 09:06:28 -0500 Subject: fix: auth-config: change require for user-constants Switch from require to eval-when-compile for loading user-constants to ensure the authinfo-file location is defined at compile-time. --- modules/auth-config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/auth-config.el') diff --git a/modules/auth-config.el b/modules/auth-config.el index a42bd52ae..4cfb294ae 100644 --- a/modules/auth-config.el +++ b/modules/auth-config.el @@ -15,7 +15,7 @@ ;;; Code: -(require 'user-constants) ;; defines authinfo-file location +(eval-when-compile (require 'user-constants)) ;; defines authinfo-file location ;; -------------------------------- Auth Sources ------------------------------- ;; auth sources settings -- cgit v1.2.3