Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18539
Modified Files:
BUGS version.lisp-expr
Log Message:
0.9.7.34:
* New bug.
Index: BUGS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/BUGS,v
retrieving revision 1.483
retrieving revision 1.484
diff -u -d -r1.483 -r1.484
--- BUGS 17 Dec 2005 22:38:17 -0000 1.483
+++ BUGS 21 Dec 2005 13:00:49 -0000 1.484
@@ -2100,3 +2100,15 @@
instead errors.
(reported on sbcl-help by "tichy")
+
+396: block-compilation bug
+ (let ((x 1))
+ (dotimes (y 10)
+ (let ((y y))
+ (when (funcall (eval #'(lambda (x) (eql x 2))) y)
+ (defun foo (z)
+ (incf x (incf y z))))))
+ (defun bar (z)
+ (foo z)
+ (values x)))
+ (bar 1) => 11, should be 4.
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.2608
retrieving revision 1.2609
diff -u -d -r1.2608 -r1.2609
--- version.lisp-expr 19 Dec 2005 10:49:33 -0000 1.2608
+++ version.lisp-expr 21 Dec 2005 13:00:49 -0000 1.2609
@@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.7.33"
+"0.9.7.34"
|