aboutsummaryrefslogtreecommitdiff
path: root/tw/home/files/emacs-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'tw/home/files/emacs-init.el')
-rw-r--r--tw/home/files/emacs-init.el4
1 files 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)