Filing off life's little irritating corners
« previous entry | next entry »
Sep. 29th, 2008 | 11:20 am
Sometimes asdf-install drives me crazy. Here's what I've been doing in my ~/.sbclrc so it doesn't ask me where I want to install all the time:
(require 'asdf)
(require 'asdf-install)
(setf asdf-install::*locations*
(list (list "~/asdf/source/" "~/asdf/systems/" "ASDF")))
(push #p"~/asdf/systems/" asdf:*central-registry*)
(fmakunbound 'asdf-install::where)
(defun asdf-install::where ()
(first asdf-install::*locations*))
On a related note, I can't live without tilde expansion in sbcl any more.