From 3f2ba7238e953e6ce564c32af383acbc267ffec9 Mon Sep 17 00:00:00 2001
From: emarsden <emarsden>
Date: Fri, 9 Apr 2004 18:03:01 +0000
Subject: [PATCH] Fix stupid mistake in the broadcast-stream ANSI-compliance
 changes.

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

diff --git a/code/stream.lisp b/code/stream.lisp
index b5c515247..5dafc1dd3 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.72 2004/04/07 17:15:00 emarsden Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.73 2004/04/09 18:03:01 emarsden Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -977,10 +977,10 @@ streams."
       ;; stream-external-format returns :default.
       (:file-length
        (if (null streams) 0
-           (file-length (last streams))))
+           (file-length (first (last streams)))))
       (:file-position
        (if (null streams) 0
-           (file-position (last streams))))
+           (file-position (first (last streams)))))
       (:element-type
        #+nil ; old, arguably more logical, version
        (let (res)
-- 
GitLab