Skip to content

Instantly share code, notes, and snippets.

@trapd00r
Created June 10, 2010 13:50
Show Gist options
  • Save trapd00r/433025 to your computer and use it in GitHub Desktop.
Save trapd00r/433025 to your computer and use it in GitHub Desktop.
;; 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