From db5aa3f4cb9f95a04b988d8f81b16cd59c60db4f Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 16 Nov 1991 00:22:51 +0000 Subject: [PATCH] Fixed output-weak-pointer to print to the supplied stream instead of *standard-output* when the pointer has been broken. --- code/print.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index 07d5aa761..bd45892d5 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.25 1991/11/09 02:47:19 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.26 1991/11/16 00:22:51 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1399,4 +1399,4 @@ (write value :stream stream) (write-char #\> stream)) (t - (write-string "#<Broken Weak Pointer>"))))) + (write-string "#<Broken Weak Pointer>" stream))))) -- GitLab