[slime-cvs] CVS slime

CVS User trittweiler trittweiler at common-lisp.net
Tue Feb 16 11:28:19 UTC 2010


Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv25008

Modified Files:
	ChangeLog swank-loader.lisp 
Log Message:
	* swank-loader.lisp: Compile files on ECL, too.


--- /project/slime/cvsroot/slime/ChangeLog	2010/02/16 11:08:01	1.1983
+++ /project/slime/cvsroot/slime/ChangeLog	2010/02/16 11:28:18	1.1984
@@ -1,5 +1,9 @@
 2010-02-16  Tobias C. Rittweiler <tcr at freebits.de>
 
+	* swank-loader.lisp: Compile files on ECL, too.
+
+2010-02-16  Tobias C. Rittweiler <tcr at freebits.de>
+
 	Pimp my swank.
 
 	* swank-ecl.lisp: We depend on ECL 10.2.1 which is not released
--- /project/slime/cvsroot/slime/swank-loader.lisp	2010/01/19 19:41:00	1.98
+++ /project/slime/cvsroot/slime/swank-loader.lisp	2010/02/16 11:28:19	1.99
@@ -43,7 +43,8 @@
   #+clisp '(xref metering swank-clisp swank-gray)
   #+armedbear '(swank-abcl)
   #+cormanlisp '(swank-corman swank-gray)
-  #+ecl '(swank-source-path-parser swank-source-file-cache swank-ecl swank-gray))
+  #+ecl '(swank-source-path-parser swank-source-file-cache
+          swank-ecl swank-gray))
 
 (defparameter *implementation-features*
   '(:allegro :lispworks :sbcl :clozure :cmu :clisp :ccl :corman :cormanlisp
@@ -156,9 +157,9 @@
           (serious-condition (c)
             (handle-loadtime-error c dest)))))))
 
-#+(or cormanlisp ecl)
+#+(or cormanlisp)
 (defun compile-files (files fasl-dir load)
-  "Corman Lisp and ECL have trouble with compiled files."
+  "Corman Lisp has trouble with compiled files."
   (declare (ignore fasl-dir))
   (when load
     (dolist (file files)
@@ -182,16 +183,18 @@
                            :defaults src-dir))
           names))
 
-(defvar *swank-files* `(swank-backend ,@*sysdep-files* swank-match swank-rpc swank))
+(defvar *swank-files*
+  `(swank-backend ,@*sysdep-files* swank-match swank-rpc swank))
 
-(defvar *contribs* '(swank-c-p-c swank-arglists swank-fuzzy
-                     swank-fancy-inspector
-                     swank-presentations swank-presentation-streams
-                     #+(or asdf sbcl) swank-asdf
-                     swank-package-fu
-                     swank-hyperdoc
-                     swank-sbcl-exts
-                     )
+(defvar *contribs*
+  '(swank-c-p-c swank-arglists swank-fuzzy
+    swank-fancy-inspector
+    swank-presentations swank-presentation-streams
+    #+(or asdf sbcl ecl) swank-asdf
+    swank-package-fu
+    swank-hyperdoc
+    swank-sbcl-exts
+    )
   "List of names for contrib modules.")
 
 (defvar *fasl-directory* (default-fasl-dir)





More information about the slime-cvs mailing list