From 6177e74f365bfc0af057ef4234d3a31f16ec6075 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 22 Dec 1999 20:29:26 +0000 Subject: [PATCH] Do FRESH-LINE at beginning of PP, not NEWLINE. --- v7/src/runtime/pp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.25.1