From 1384d1e72e07ee71525622efa49425bf53a72456 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 26 Jul 1993 10:13:34 +0000 Subject: [PATCH] unqualify print-object, since it is from LISP now. --- code/print.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index ce8a09957..446ce9574 100644 --- a/code/print.lisp +++ b/code/print.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.56 1993/07/23 11:48:16 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.57 1993/07/26 10:13:34 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1112,8 +1112,8 @@ ((and (fboundp 'dylan::dylan-instance-p) (dylan::dylan-instance-p instance)) (dylan::%print-dylan-instance instance stream)) - ((fboundp 'pcl:print-object) - (pcl:print-object instance stream)) + ((fboundp 'print-object) + (print-object instance stream)) (t (print-unreadable-object (instance stream :identity t) (write-string "Unprintable Instance" stream)))))) -- GitLab