From 1afea213abfc617312586185d9edc0a8715eab81 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 7 Mar 1995 02:19:20 +0000 Subject: [PATCH] Fix think-o in previous change. --- v7/src/runtime/stream.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/stream.scm b/v7/src/runtime/stream.scm index ecf1c67bb..954fac856 100644 --- a/v7/src/runtime/stream.scm +++ b/v7/src/runtime/stream.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: stream.scm,v 14.8 1995/03/06 23:29:41 cph Exp $ +$Id: stream.scm,v 14.9 1995/03/07 02:19:20 cph Exp $ Copyright (c) 1988-95 Massachusetts Institute of Technology @@ -220,7 +220,7 @@ MIT in each case. |# (begin (write-char leader port) (write (car stream*) port) - (loop (force (cdr stream*)))) + (loop (force (cdr stream*)) #\space)) (begin (if (not (null? stream*)) (error:wrong-type-argument stream "stream" 'STREAM-WRITE)) -- 2.25.1