Add commented cs325 setup lines to the SBCL resource file

This commit is contained in:
Gerard Vermeulen 2023-03-12 18:05:15 +01:00
parent 825b7e21c4
commit 028f26506e
1 changed files with 8 additions and 0 deletions

View File

@ -4491,11 +4491,19 @@ EOF
#+name: lst:quicklisp-sbclrc-file
#+begin_src lisp -n :eval never-export :tangle ~/.sbclrc
;;; Hey Emacs, this is my -*- lisp -*- .sbclrc file.
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
;;; Load cs325.lisp to create the cs325 package.
;; (eval-when (:compile-toplevel :load-toplevel :execute)
;; (ql:quickload "cs325")
;; (setq *package* (find-package :cs325-user)))
#+end_src
** [[info:eintr#Top][Emacs Lisp Programming (info)]]