Update of /cvsroot/sbcl/sbcl
In directory usw-pr-cvs1:/tmp/cvs-serv19034
Modified Files:
BUGS version.lisp-expr
Log Message:
0.7.5.2:
Minor array performance tweak
... return the known-boxed value from the full-call
HAIRY-DATA-VECTOR-SET
Index: BUGS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/BUGS,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- BUGS 20 Jun 2002 13:04:26 -0000 1.157
+++ BUGS 26 Jun 2002 14:11:27 -0000 1.158
@@ -1368,6 +1368,14 @@
* (/ 1 (/ 3 2) 0)
1/0
+185: "top-level forms at the REPL"
+ * (locally (defstruct foo (a 0 :type fixnum)))
+ gives an error:
+ ; caught ERROR:
+ ; (in macroexpansion of (SB-KERNEL::%DELAYED-GET-COMPILER-LAYOUT BAR))
+ however, compiling and loading the same expression in a file works
+ as expected.
+
DEFUNCT CATEGORIES OF BUGS
IR1-#:
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -d -r1.461 -r1.462
--- version.lisp-expr 25 Jun 2002 15:57:14 -0000 1.461
+++ version.lisp-expr 26 Jun 2002 14:11:27 -0000 1.462
@@ -18,4 +18,4 @@
;;; for internal versions, especially for internal versions off the
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.7.5.1"
+"0.7.5.2"
|