From 83de0f753f6db353b5b0ee9302e34bc277801320 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Wed, 14 Mar 2001 23:23:48 +0000
Subject: [PATCH] From Eric Marsden and Pierre Mai:

Add class info to describe.
---
 code/describe.lisp | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/code/describe.lisp b/code/describe.lisp
index d4b2cc16e..7bc039268 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) ())
-- 
GitLab