Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1:/tmp/cvs-serv6358
Modified Files:
NEWS version.lisp-expr
Log Message:
0.7.10.1:
Fix yet another LOOP bug
... disallow aggregate booleans with anonymous collectors
... and the converse :-)
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -d -r1.206 -r1.207
--- NEWS 27 Nov 2002 14:47:10 -0000 1.206
+++ NEWS 27 Nov 2002 16:17:09 -0000 1.207
@@ -1431,6 +1431,12 @@
* incremented fasl file version number, because of the
SXHASH-related changes in the layout of CLOS data structures
+changes in sbcl-0.7.11 relative to sbcl-0.7.10:
+ * fixed some bugs shown by Paul Dietz' test suite:
+ ** As required by ANSI, LOOP now disallows anonymous collection
+ clauses such as COLLECT I in conjunction with aggregate boolean
+ clauses such as THEREIS (= I 1);
+
planned incompatible changes in 0.7.x:
* (not done yet, but planned:) When the profiling interface settles
down, maybe in 0.7.x, maybe later, it might impact TRACE. They both
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.677
retrieving revision 1.678
diff -u -d -r1.677 -r1.678
--- version.lisp-expr 27 Nov 2002 14:47:10 -0000 1.677
+++ version.lisp-expr 27 Nov 2002 16:17:09 -0000 1.678
@@ -18,4 +18,4 @@
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.7.10"
+"0.7.10.1"
|