From a429219f7c4e9aba8996346a962d1f9d67f19956 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 3 Sep 2026 00:17:03 -0700 Subject: sbcl: Fix quicklisp path Once upon a time I'd installed Quicklisp into ‘~/.local/share/quicklisp’ instead of the default ‘~/quicklisp’ and I forgot that I had to do this manually. I'm probably better off just using the default value. --- sbcl/sbclrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbcl/sbclrc b/sbcl/sbclrc index 86d47f9..228ae53 100644 --- a/sbcl/sbclrc +++ b/sbcl/sbclrc @@ -2,7 +2,7 @@ ;;; The following lines added by ql:add-to-init-file: #-quicklisp -(let ((quicklisp-init (merge-pathnames ".local/share/quicklisp/setup.lisp" +(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) (when (probe-file quicklisp-init) (load quicklisp-init))) -- cgit v1.3-2-g0d8e