[slime-cvs] CVS slime

trittweiler trittweiler at common-lisp.net
Fri Nov 23 08:25:52 UTC 2007


Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv18911

Modified Files:
	swank.lisp 
Log Message:

* swank.lisp (swank-require): Fix typo (:key was used instead of
  :test.) Reported by Stelian Ionescu.


--- /project/slime/cvsroot/slime/swank.lisp	2007/11/22 22:33:39	1.514
+++ /project/slime/cvsroot/slime/swank.lisp	2007/11/23 08:25:52	1.515
@@ -2282,7 +2282,7 @@
 
 (defslimefun swank-require (module &optional filename)
   "Load the module MODULE."
-  (unless (member (string module) *modules* :key #'string=)
+  (unless (member (string module) *modules* :test #'string=)
     (require module (or filename (module-filename module))))
   nil)
 




More information about the slime-cvs mailing list