Hi,
I'd like to be able to switch between several installations of SLIME, and handle the possibility that each installation is a different version of SLIME.
I'm writing some emacs helper functions to support this, and here's my attempt at unloading SLIME before I try to load the other version:
(defun unload-slime () (slime-repl-sayoonara) (dolist (feature features) (when (string-match "slime" (format "%s" feature)) (unload-feature feature t))))
I'm wondering if anyone can let me know if this looks OK, or if they have a better idea?
Many thanks!
Cheers, David