
5 Jun
2009
5 Jun
'09
1:44 p.m.
On 5 Jun 2009, at 09:21, Bill St. Clair wrote:
(pushnew "/usr/local/src/slime" asdf:*central-registry* :test #'equal) (asdf:oos 'asdf:load-op :swank)
Of course! Thanks! For future Googlers, here's what I have in my ccl-init.lisp to make sure swank is started every time: (pushnew #P"/home/pjm/slime/" asdf:*central-registry* :test #'equal) (asdf:oos 'asdf:load-op :swank) (setq swank:*use-dedicated-output-stream* nil) (swank:create-server :port 4005 :dont-close t) Thanks again, Patrick