Created
June 10, 2010 13:50
-
-
Save trapd00r/433025 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; This is to have clx running when sbcl begins, I think | |
;; Load ASDF first | |
(require 'asdf) | |
(pushnew #p"/usr/share/common-lisp/systems/" asdf:*central-registry* :test #'equal) | |
(asdf:operate 'asdf:load-op 'cl-ppcre) | |
;; This is supposed to load cl-ppcre, I think | |
;; Note that ASDF has already been loaded (up above, in the CLX part). If that is not so, uncomment the following line | |
;(require 'asdf) | |
(push #p"/usr/share/common-lisp/systems/" asdf:*central-registry*) | |
(asdf:operate 'asdf:load-op 'cl-ppcre) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment