diff options
| author | 2026-09-03 00:17:03 -0700 | |
|---|---|---|
| committer | 2026-09-03 00:17:03 -0700 | |
| commit | 69c188e35911f4f8ef294c1a3d1159c20eb4bebe (patch) | |
| tree | 2fa043fa012ccb14e8bc1901e2d72ad003128b9b | |
| parent | 3fa254fa36d59faa7b596293eab93fcf2ca3a0cb (diff) | |
| download | new-dotfiles-69c188e35911f4f8ef294c1a3d1159c20eb4bebe.tar.gz new-dotfiles-69c188e35911f4f8ef294c1a3d1159c20eb4bebe.zip | |
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.
| -rw-r--r-- | sbcl/sbclrc | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |
