[slime-cvs] CVS slime

CVS User trittweiler trittweiler at common-lisp.net
Fri Mar 5 16:11:40 UTC 2010


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

Modified Files:
	ChangeLog swank-ecl.lisp 
Log Message:
	* swank-ecl.lisp: Make backend depend on ECL version 10.3.1 which
	just got released. We do not support older versions. Previous
	version pretty much didn't work in combination with Slime anyway.


--- /project/slime/cvsroot/slime/ChangeLog	2010/03/05 11:05:52	1.2015
+++ /project/slime/cvsroot/slime/ChangeLog	2010/03/05 16:11:40	1.2016
@@ -1,5 +1,11 @@
 2010-03-05  Tobias C. Rittweiler <tcr at freebits.de>
 
+	* swank-ecl.lisp: Make backend depend on ECL version 10.3.1 which
+	just got released. We do not support older versions. Previous
+	version pretty much didn't work in combination with Slime anyway.
+
+2010-03-05  Tobias C. Rittweiler <tcr at freebits.de>
+
 	Ecl: Make M-. work on function interactively compiled via C-c C-c.
 
 	* swank-ecl.lisp (*tmpfile-map*, note-buffer-tmpfile)
--- /project/slime/cvsroot/slime/swank-ecl.lisp	2010/03/05 11:05:52	1.59
+++ /project/slime/cvsroot/slime/swank-ecl.lisp	2010/03/05 16:11:40	1.60
@@ -12,10 +12,10 @@
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (let ((version (find-symbol "+ECL-VERSION-NUMBER+" :EXT)))
-    (when (or (not version) (< (symbol-value version) 100201))
+    (when (or (not version) (< (symbol-value version) 100301))
       (error "~&IMPORTANT:~%  ~
               The version of ECL you're using (~A) is too old.~%  ~
-              Please upgrade to at least 10.2.1.~%  ~
+              Please upgrade to at least 10.3.1.~%  ~
               Sorry for the inconvenience.~%~%"
              (lisp-implementation-version)))))
 





More information about the slime-cvs mailing list