From 64e2fad1eeee78575e4f4f77e873497bf15c17c5 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 5 Dec 1994 00:02:45 +0000
Subject: [PATCH] Fixed broadcast streams to not close the component streams
 when the broadcast stream is closed.  Revision 1.21 claimed to do this, but
 it lied in the case of broadcast streams.

---
 code/stream.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/code/stream.lisp b/code/stream.lisp
index 1248e63da..84832a2ba 100644
--- a/code/stream.lisp
+++ b/code/stream.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/stream.lisp,v 1.24 1994/11/01 17:57:46 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.25 1994/12/05 00:02:45 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -580,6 +580,7 @@
 	 (dolist (stream streams (if (> (length res) 1) `(and ,@res) res))
 	   (pushnew (funcall (stream-misc stream) stream :element-type) res
 		    :test #'equal))))
+      (:close)
       (t
        (let ((res nil))
 	 (dolist (stream streams res)
-- 
GitLab