From 8cbecd94222aed117a740993b64cf1255a0c3909 Mon Sep 17 00:00:00 2001 From: larstvei Date: Fri, 18 Apr 2025 23:54:47 +0200 Subject: [PATCH] Bug in conditional loading of custom-file --- init.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.org b/init.org index 4123d9d..b8d6c9c 100644 --- a/init.org +++ b/init.org @@ -165,7 +165,7 @@ (let ((private-file (concat user-emacs-directory "private.el"))) (when (file-exists-p private-file) (load-file private-file)) - (when custom-file + (when (file-exists-p custom-file) (load-file custom-file)) (server-start))))