From: Chris Hanson Date: Tue, 7 Mar 1995 02:19:20 +0000 (+0000) Subject: Fix think-o in previous change. X-Git-Tag: 20090517-FFI~6560 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=1afea213abfc617312586185d9edc0a8715eab81;p=mit-scheme.git Fix think-o in previous change. --- 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))