diff --git a/code/describe.lisp b/code/describe.lisp index d4b2cc16e0ffd8245af471d7228b0a466841b96e..7bc039268773fbe172097b25be8c097e7639bda7 100644 --- a/code/describe.lisp +++ b/code/describe.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/describe.lisp,v 1.34 2000/08/10 10:55:22 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.35 2001/03/14 23:23:48 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -428,6 +428,11 @@ (dolist (assoc (info random-documentation stuff x)) (format t "~&Documentation on the ~(~A~):~%~A" (car assoc) (cdr assoc))) ;; + ;; Print Class information + (when (find-class x nil) + (format t "~&It names a class ~A." (find-class x)) + (describe (find-class x))) + ;; ;; Print out properties, possibly ignoring implementation details. (do ((plist (symbol-plist X) (cddr plist))) ((null plist) ())