From 5a6741bce99238199776c7e556777eef4fd95deb Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 5 Oct 1990 13:11:44 +0000 Subject: [PATCH] Fixed output-structure to use structure-ref instead of svref. --- code/print.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index efb41dda4..6bfe53e73 100644 --- a/code/print.lisp +++ b/code/print.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.12 1990/10/01 14:56:10 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.13 1990/10/05 13:11:44 wlott Exp $ ;;; ;;; CMU Common Lisp printer. ;;; @@ -713,11 +713,11 @@ (finish-random array stream)) -;;; Structure Printing. These days we can always pass the buck to the Defstruct -;;; code. +;;; Structure Printing. These days we can always pass the buck to the +;;; Defstruct code. (defun output-structure (structure stream currlevel) - (funcall (or (info type printer (svref structure 0)) + (funcall (or (info type printer (%primitive c::structure-ref structure 0)) #'c::default-structure-print) structure stream currlevel)) -- GitLab