From: Chris Hanson Date: Wed, 22 Dec 1999 20:29:26 +0000 (+0000) Subject: Do FRESH-LINE at beginning of PP, not NEWLINE. X-Git-Tag: 20090517-FFI~4392 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6177e74f365bfc0af057ef4234d3a31f16ec6075;p=mit-scheme.git Do FRESH-LINE at beginning of PP, not NEWLINE. --- diff --git a/v7/src/runtime/pp.scm b/v7/src/runtime/pp.scm index 2ebb46750..b20965548 100644 --- a/v7/src/runtime/pp.scm +++ b/v7/src/runtime/pp.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: pp.scm,v 14.39 1999/01/02 06:11:34 cph Exp $ +$Id: pp.scm,v 14.40 1999/12/22 20:29:26 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -69,7 +69,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (let ((port (if (default-object? port) (current-output-port) port))) (let ((pretty-print (lambda (object) - (newline port) + (fresh-line port) (apply pretty-print object port rest)))) (cond ((pp-description object) => (lambda (description)