diff --git a/code/stream.lisp b/code/stream.lisp index b5c515247771cbc762b801c22d05a43c93f08095..5dafc1dd371a960e36cf5c78ea42f7b154781f30 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)