Skip to content
Snippets Groups Projects
Commit 7357cac1 authored by wlott's avatar wlott
Browse files

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.
parent ffebdd15
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -1040,7 +1040,7 @@
(defun output-structure (structure stream) (defun output-structure (structure stream)
(let ((*current-structure* nil)) (let ((*current-structure* nil))
(descend-into (stream structure) (descend-into (structure stream)
(let ((*current-structure* structure)) (let ((*current-structure* structure))
(funcall (or (info type printer (structure-ref structure 0)) (funcall (or (info type printer (structure-ref structure 0))
#'c::default-structure-print) #'c::default-structure-print)
......
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