From: Chris Hanson Date: Mon, 20 Dec 1999 23:11:37 +0000 (+0000) Subject: Change definition of WRITE-LINE so that the newline is emitted after X-Git-Tag: 20090517-FFI~4403 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=a474c40e0a1600a12b3c264012cab2ba5e3c4bc3;p=mit-scheme.git Change definition of WRITE-LINE so that the newline is emitted after the object, rather than before it as previously. --- 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)