From a474c40e0a1600a12b3c264012cab2ba5e3c4bc3 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 20 Dec 1999 23:11:37 +0000 Subject: [PATCH] Change definition of WRITE-LINE so that the newline is emitted after the object, rather than before it as previously. --- v7/src/runtime/output.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/output.scm b/v7/src/runtime/output.scm index 05dac465a..aa5c6651a 100644 --- a/v7/src/runtime/output.scm +++ b/v7/src/runtime/output.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: output.scm,v 14.21 1999/08/09 18:33:25 cph Exp $ +$Id: output.scm,v 14.22 1999/12/20 23:11:37 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -150,8 +150,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (if (default-object? unparser-table) (current-unparser-table) (guarantee-unparser-table unparser-table 'WRITE-LINE)))) - (output-port/write-char port #\newline) (unparse-object/top-level object port #t unparser-table) + (output-port/write-char port #\newline) (output-port/discretionary-flush port))) (define (flush-output #!optional port) -- 2.25.1