[slime-cvs] CVS update: slime/swank-loader.lisp

Luke Gorrie lgorrie at common-lisp.net
Mon Apr 26 13:20:26 UTC 2004


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv17088

Modified Files:
	swank-loader.lisp 
Log Message:
(*lisp-name*): Include a short version number in the Lisp name to
separate FASL files for different versions. Only implemented for CMUCL
and SBCL sofar.

Date: Mon Apr 26 09:20:26 2004
Author: lgorrie

Index: slime/swank-loader.lisp
diff -u slime/swank-loader.lisp:1.21 slime/swank-loader.lisp:1.22
--- slime/swank-loader.lisp:1.21	Wed Apr 21 14:56:42 2004
+++ slime/swank-loader.lisp	Mon Apr 26 09:20:26 2004
@@ -40,12 +40,12 @@
            )))
 
 (defparameter *lisp-name*
-  #+cmu "cmu"
-  #+sbcl "sbcl"
-  #+openmcl "openmcl"
+  #+cmu       (format nil "cmu-~A" (lisp-implementation-version))
+  #+sbcl      (format nil "sbcl-~A" (lisp-implementation-version))
+  #+openmcl   "openmcl"
   #+lispworks "lispworks"
-  #+allegro "allegro"
-  #+clisp "clisp"
+  #+allegro   "allegro"
+  #+clisp     "clisp"
   )
 
 (defparameter *swank-pathname* (make-swank-pathname "swank"))





More information about the slime-cvs mailing list