Update of /cvsroot/sbcl/sbcl
In directory vz-cvs-3.sog:/tmp/cvs-serv16035
Modified Files:
NEWS version.lisp-expr
Log Message:
1.0.47.19: another MAKE-INSTANCE regression from 1.0.45.18
...which was masked by another regression till 1.0.46.15.
Inverted conditional: (SLOT-BOUNDP-USING-CLASS ...) where it should
have been (NOT (SLOT-BOUNDP-USING-CLASS ...)).
Reported by Pascal Costanza on sbcl-devel.
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.1902
retrieving revision 1.1903
diff -u -d -r1.1902 -r1.1903
--- NEWS 8 Apr 2011 15:38:26 -0000 1.1902
+++ NEWS 10 Apr 2011 09:21:46 -0000 1.1903
@@ -16,6 +16,8 @@
* bug fix: forms such as (FUNCALL (FUNCTION NAME OOPS) ...) were compiled
without complaints.
* bug fix: less verbose source forms for functions from EVAL. (lp#747485)
+ * bug fix: sense of SLOT-BOUNDP-USING-CLASS was inverted in a MAKE-INSTANCE
+ optimization. (regression from 1.0.45.18/1.0.46.15)
changes in sbcl-1.0.47 relative to sbcl-1.0.46:
* bug fix: fix mach port rights leaks in mach exception handling code on
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.5247
retrieving revision 1.5248
diff -u -d -r1.5247 -r1.5248
--- version.lisp-expr 8 Apr 2011 15:38:26 -0000 1.5247
+++ version.lisp-expr 10 Apr 2011 09:21:46 -0000 1.5248
@@ -20,4 +20,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".)
-"1.0.47.18"
+"1.0.47.19"
|