From 7357cac1426d9e35a1e8544aaf6d7fc9e9ccb924 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 13 Dec 1991 10:08:08 +0000
Subject: [PATCH] Oops, had the argument order backwards in a use of
 output-structure so it was trying to print the stream to the structure
 instead of print the structure to the stream.

---
 code/print.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/print.lisp b/code/print.lisp
index c4660e175..2ce48e646 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.30 1991/12/13 06:04:37 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.31 1991/12/13 10:08:08 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1040,7 +1040,7 @@
 
 (defun output-structure (structure stream)
   (let ((*current-structure* nil))
-    (descend-into (stream structure)
+    (descend-into (structure stream)
       (let ((*current-structure* structure))
 	(funcall (or (info type printer (structure-ref structure 0))
 		     #'c::default-structure-print)
-- 
GitLab