diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt index e4855d5861204eb0caeaae746f12f9878b504107..3c090e7588f593ebb70935bfb8cd572ebef6e083 100644 --- a/general-info/release-19a.txt +++ b/general-info/release-19a.txt @@ -93,6 +93,9 @@ New in this release: - ALLOCATE-INSTANCE working with structures defined with DEFSTRUCT. - With (DEFGENERIC FOO (&REST X &KEY)) (DEFMETHOD FOO (&REST X) X), (FOO 1) now signals an error. + - Condition slots can be read with SLOT-VALUE, written with + (SETF SLOT-VALUE), and checked with SLOT-BOUNDP. It's not + possible to SLOT-MAKUNBOUND them, though. * Improvements to Hemlock, the Emacs-like editor: diff --git a/pcl/slots.lisp b/pcl/slots.lisp index 3218a918cc2c3da1f89d651ff8c75ea2e52babaf..829dbd288f916d51ac3255619dc586604b3655c4 100644 --- a/pcl/slots.lisp +++ b/pcl/slots.lisp @@ -26,7 +26,7 @@ ;;; (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/slots.lisp,v 1.21 2003/05/04 13:11:20 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/slots.lisp,v 1.22 2003/05/10 20:27:23 gerd Exp $") ;;; (in-package :pcl) @@ -266,6 +266,12 @@ (object structure-object) (slotd structure-effective-slot-definition)) (error "Structure slots cannot be unbound.")) + + +(defmethod slot-makunbound-using-class ((class condition-class) object slot) + (declare (ignore object slot)) + (error "Condition slots cannot be unbound.")) + (defmethod slot-missing diff --git a/pcl/std-class.lisp b/pcl/std-class.lisp index f0eba8d9d293343ec099e6c591a76ae12a430e7a..ca947a750f768ee0fd4bbe548e346b5fc839ee4f 100644 --- a/pcl/std-class.lisp +++ b/pcl/std-class.lisp @@ -26,7 +26,7 @@ ;;; (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.63 2003/05/10 19:09:01 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.64 2003/05/10 20:27:23 gerd Exp $") (in-package :pcl) @@ -1617,6 +1617,26 @@ (defmethod finalize-inheritance ((class condition-class)) nil) +(defmethod compute-effective-slot-definition + ((class condition-class) slot-name dslotds) + (let ((slotd (call-next-method))) + (setf (slot-definition-reader-function slotd) + (lambda (x) + (handler-case + (conditions::condition-reader-function x slot-name) + (error () (slot-unbound class x slot-name))))) + (setf (slot-definition-writer-function slotd) + (lambda (v x) + (conditions::condition-writer-function x v slot-name))) + (setf (slot-definition-boundp-function slotd) + (lambda (x) + (multiple-value-bind (v c) + (ignore-errors + (conditions::condition-reader-function x slot-name)) + (declare (ignore v)) + (null c)))) + slotd)) + (defmethod compute-slots ((class condition-class)) (mapcan (lambda (superclass) (mapcar (lambda (dslotd)