[slime-cvs] CVS update: slime/swank-ecl.lisp slime/swank-loader.lisp
Juan Jose Garcia Ripoll
jgarcia at common-lisp.net
Wed Aug 3 09:40:21 UTC 2005
Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv19902
Modified Files:
swank-loader.lisp
Added Files:
swank-ecl.lisp
Log Message:
Initial port to ECL
Date: Wed Aug 3 11:40:20 2005
Author: jgarcia
Index: slime/swank-loader.lisp
diff -u slime/swank-loader.lisp:1.50 slime/swank-loader.lisp:1.51
--- slime/swank-loader.lisp:1.50 Sun Jul 3 17:40:23 2005
+++ slime/swank-loader.lisp Wed Aug 3 11:40:20 2005
@@ -34,6 +34,7 @@
#+clisp '("xref" "metering" "swank-clisp" "swank-gray")
#+armedbear '("swank-abcl")
#+cormanlisp '("swank-corman" "swank-gray")
+ #+ecl '("swank-ecl" "swank-gray")
)))
(defparameter *implementation-features*
@@ -125,9 +126,9 @@
(load source-pathname))
))))))
-#+cormanlisp
+#+(or cormanlisp ecl)
(defun compile-files-if-needed-serially (files)
- "Corman Lisp has trouble with compiled files."
+ "Corman Lisp and ECL have trouble with compiled files."
(dolist (file files)
(load file :verbose t)
(force-output)))
More information about the slime-cvs
mailing list