Skip to content
Snippets Groups Projects
Commit 73ded41c authored by wlott's avatar wlott
Browse files

Changed output-instance to use %print-dylan-instance to print dylan

instances.
parent acbba168
No related branches found
No related tags found
No related merge requests found
......@@ -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.55 1993/06/24 14:18:59 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.56 1993/07/23 11:48:16 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -1109,6 +1109,9 @@
(funcall (or (basic-structure-class-print-function class)
#'default-structure-print)
instance stream *current-level*))
((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))
(t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment