From bc3d0513fcee26c7a34a59637e3bf8ce6d8b72b8 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 5 Feb 1998 18:51:20 +0000 Subject: [PATCH] Export describe-object from the PCL and LISP packages. --- code/describe.lisp | 4 ++-- code/exports.lisp | 5 +++-- code/globals.lisp | 4 ++-- pcl/pkg.lisp | 1 + pcl/sys-proclaim.lisp | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/code/describe.lisp b/code/describe.lisp index bdb83fe19..62ffcd281 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.31 1997/02/08 17:22:36 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.32 1998/02/05 18:51:13 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -141,7 +141,7 @@ (cond ((let ((so-class (find-class 'standard-object nil))) (and so-class (typep x so-class))) (fresh-line *standard-output*) - (pcl::describe-object x *standard-output*)) + (describe-object x *standard-output*)) (t (format t "~&~S is a ~(~A~) of type ~A." x kind (type-of x)) (dolist (slot (cddr (inspect::describe-parts x))) diff --git a/code/exports.lisp b/code/exports.lisp index 76349c560..c7e59f4ed 100644 --- a/code/exports.lisp +++ b/code/exports.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/exports.lisp,v 1.139 1998/02/03 19:22:15 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.140 1998/02/05 18:51:10 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -557,7 +557,8 @@ "ADD-METHOD" "CALL-METHOD" "CALL-NEXT-METHOD" "CHANGE-CLASS" "COMPUTE-APPLICABLE-METHODS" "DEFCLASS" "DEFGENERIC" - "DEFINE-METHOD-COMBINATION" "DEFMETHOD" "ENSURE-GENERIC-FUNCTION" + "DEFINE-METHOD-COMBINATION" "DEFMETHOD" "DESCRIBE-OBJECT" + "ENSURE-GENERIC-FUNCTION" "FIND-METHOD" "FUNCTION-KEYWORDS" "GENERIC-FLET" "GENERIC-LABELS" "INITIALIZE-INSTANCE" "INVALID-METHOD-ERROR" "MAKE-INSTANCE" "MAKE-INSTANCES-OBSOLETE" diff --git a/code/globals.lisp b/code/globals.lisp index 3d810f7a5..2a38a74d6 100644 --- a/code/globals.lisp +++ b/code/globals.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/globals.lisp,v 1.14 1997/09/04 06:17:16 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/globals.lisp,v 1.15 1998/02/05 18:51:14 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -47,7 +47,7 @@ (declaim (ftype (function * *) find-keyword keyword-test assert-error assert-prompt check-type-error case-body-error print-object - pcl::describe-object pcl::check-wrapper-validity)) + describe-object pcl::check-wrapper-validity)) #-clx (declaim (ftype (function * *) diff --git a/pcl/pkg.lisp b/pcl/pkg.lisp index c17318029..96a07512f 100644 --- a/pcl/pkg.lisp +++ b/pcl/pkg.lisp @@ -85,6 +85,7 @@ "DEFGENERIC" "DEFINE-METHOD-COMBINATION" "DEFMETHOD" + "DESCRIBE-OBJECT" "ENSURE-GENERIC-FUNCTION" "FIND-CLASS" "FIND-METHOD" diff --git a/pcl/sys-proclaim.lisp b/pcl/sys-proclaim.lisp index c1d1f92f6..0660b52a6 100644 --- a/pcl/sys-proclaim.lisp +++ b/pcl/sys-proclaim.lisp @@ -670,7 +670,7 @@ PCL::LEGAL-QUALIFIERS-P PCL::ADD-BOUNDP-METHOD PCL::LEGAL-LAMBDA-LIST-P PCL::|SETF PCL GENERIC-FUNCTION-NAME| - PCL::DESCRIBE-OBJECT PCL::CLASS-INITIALIZE-INFO + PCL:DESCRIBE-OBJECT PCL::CLASS-INITIALIZE-INFO PCL::MAKE-WRITER-METHOD-FUNCTION PCL::|SETF PCL GF-DFUN-STATE| PCL::|SETF PCL SLOT-DEFINITION-NAME| -- GitLab