From b4d89552f8c6b34b202dd4ef01e14a43da1440e8 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(-) diff --git a/modules/auth-config.el b/modules/auth-config.el index a42bd52a..4cfb294a 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