From d7fd7bd3a3f374f02d617bf7620903ee8607d8d7 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Fri, 2 Feb 2024 10:57:57 +0100 Subject: Remove QuickLisp dependency for Lisp env setup QuickLisp might not be installed at all, and I don't need it, since I use Guix to install dependencies anyway. --- tw/home/files/emacs-init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tw/home/files/emacs-init.el b/tw/home/files/emacs-init.el index 1bc3cadb..758f5877 100644 --- a/tw/home/files/emacs-init.el +++ b/tw/home/files/emacs-init.el @@ -909,10 +909,10 @@ For use in `org-latex-classes'." ,@(and (file-exists-p (file-name-concat project-directory "guix.scm")) '("guix" "shell" "-Df" "guix.scm" "--")) "sbcl" "--noinform" - ;; Load all defined asdf systems using QuickLisp. + ;; Load all defined asdf systems. ,@(mapcan (lambda (system) (list "--load" (format "%s.asd" system) - "--eval" (format "(ql:quickload '#:%s)" system))) + "--eval" (format "(require '%s)" system))) ;; Heuristic: shorter names are earlier in the dependency tree. ;; For example, X-test.asd depends on X.asd. (sort (tw/find-asd-systems project-directory) -- cgit v1.2.3