From 193cc5baf11919014843b1fd8cb635d616ecc2de Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Tue, 12 Aug 2003 21:33:47 +0000 Subject: [PATCH] * src/code/print.lisp (output-array-guts): Parts of the output went to the wrong stream. From Robert Macomber on cmucl-imp. --- code/print.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index 0c111e2ba..523a55615 100644 --- a/code/print.lisp +++ b/code/print.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/print.lisp,v 1.85 2003/06/18 09:23:10 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.86 2003/08/12 21:33:47 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1081,11 +1081,11 @@ (cond (*print-readably* (write-string "#A(" stream) (output-object (array-element-type array) stream) - (write-char #\Space) + (write-char #\Space stream) (output-object (array-dimensions array) stream) - (write-char #\Space) + (write-char #\Space stream) (sub-output-array-guts data (array-dimensions array) stream start) - (write-char #\))) + (write-char #\) stream)) (t (write-char #\# stream) (let ((*print-base* 10)) -- GitLab