From 056a4255b3d414e7956a7b7c37c69574adf58cc4 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Thu, 26 Mar 1998 13:15:50 +0000 Subject: [PATCH] Add define-condition UNBOUND-SLOT. Default method for slot-unbound now signals that condition as required by ANSI spec. --- pcl/slots.lisp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pcl/slots.lisp b/pcl/slots.lisp index 6cb3c866e..224dbc8c9 100644 --- a/pcl/slots.lisp +++ b/pcl/slots.lisp @@ -27,6 +27,16 @@ (in-package :pcl) +;;; ANSI CL condition for unbound slots. + +(define-condition unbound-slot (cell-error) + ((instance :reader unbound-slot-instance :initarg :instance) + (slot :reader unbound-slot-slot :initarg :slot)) + (:report (lambda(condition stream) + (format stream "The slot ~S is unbound in the object ~S" + (unbound-slot-slot condition) + (unbound-slot-instance condition))))) + (defmethod wrapper-fetcher ((class standard-class)) 'std-instance-wrapper) @@ -355,7 +365,7 @@ instance)) (defmethod slot-unbound ((class t) instance slot-name) - (error "The slot ~S is unbound in the object ~S." slot-name instance)) + (error 'unbound-slot :slot slot-name :instance instance)) (defun slot-unbound-internal (instance position) (slot-unbound (class-of instance) instance -- GitLab