Hello,
The init/unload function names for slime-asdf are misspelled. The following patch fixes that.
Ariel
RCS file: /project/slime/cvsroot/slime/contrib/slime-asdf.el,v retrieving revision 1.2 diff -u -r1.2 slime-asdf.el --- slime-asdf.el 20 Sep 2007 14:55:53 -0000 1.2 +++ slime-asdf.el 21 Sep 2007 11:40:01 -0000 @@ -104,10 +104,10 @@ (defun slime-asdf-on-connect () (slime-eval-async '(swank:swank-require :swank-asdf)))
-(defun slime-adsf-init () +(defun slime-asdf-init () (add-hook 'slime-connected-hook 'slime-asdf-on-connect))
-(defun slime-adsf-unload () +(defun slime-asdf-unload () (remove-hook 'slime-connected-hook 'slime-asdf-on-connect))
(provide 'slime-asdf)