diff --git a/code/tty-inspect.lisp b/code/tty-inspect.lisp index fa1f6c5b723e898335f6b94f3f60ba712fbc5fa5..ba9b0126376451b7963fbf8a91e9e61e36781027 100644 --- a/code/tty-inspect.lisp +++ b/code/tty-inspect.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.21 2003/02/05 12:34:08 emarsden Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.22 2003/05/12 14:20:42 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -148,6 +148,7 @@ (defun describe-parts (object) (typecase object (symbol (describe-symbol-parts object)) + (standard-object (describe-standard-object-parts object)) (instance (describe-instance-parts object :structure)) (function (if (kernel:funcallable-instance-p object) @@ -169,6 +170,17 @@ (cons "Plist" (symbol-plist object)) (cons "Package" (symbol-package object)))) +(defun describe-standard-object-parts (object) + (collect ((parts)) + (let ((class (class-of object))) + (parts (format nil "~s is an instance of ~s.~%" object class)) + (parts t) + (dolist (slot (mop:class-slots class) (parts)) + (parts (cons (mop:slot-definition-name slot) + (if (mop:slot-boundp-using-class class object slot) + (mop:slot-value-using-class class object slot) + "- (slot is unbound)"))))))) + (defun describe-instance-parts (object kind) (let ((info (layout-info (kernel:layout-of object))) (parts-list ())) diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt index 374c94c39f68bb391f3a5cbc245e4583a3699e61..12a1919de001714e32bdcca5e969f3f25b836450 100644 --- a/general-info/release-19a.txt +++ b/general-info/release-19a.txt @@ -31,6 +31,7 @@ New in this release: - Compiler checking control string and number of args to FORMAT. - TRACE automatically using encapsulation when function-end breakpoints cannot be used. + - INSPECT working on CLOS instances. * Numerous ANSI compliance fixes: - Many bugs in CMUCL's type system detected by Paul Dietz'