From 0c541cf60960ec909dc07335e7a57a70e7e86657 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 25 Dec 2024 17:38:33 +0100 Subject: [PATCH] Explicitly load cl-sites.el --- init.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 60389eb6..2e2516c2 100755 --- a/init.el +++ b/init.el @@ -1931,7 +1931,6 @@ Uses `mk/hyperspec-dir-locations' to find the directory." (load "bundle--ct") (load "bundle--mk"))) -(let ((cl-sites-dir (expand-file-name "~/cl-sites/"))) - (when (file-directory-p cl-sites-dir) - (add-to-list 'load-path cl-sites-dir) - (load "cl-sites"))) +(let ((cl-sites-dir (expand-file-name "~/cl-sites/cl-sites.el"))) + (when (file-exists-p cl-sites-dir) + (load cl-sites-dir)))