From d424cc4ef2beaa6f1632b5f4b72061d0325ef153 Mon Sep 17 00:00:00 2001 From: Stevie Strickland Date: Mon, 15 Sep 2008 22:10:17 +0000 Subject: [PATCH] This way we get rid of the phantom spaces in the fitting case. svn: r11767 --- collects/scheme/private/contract-guts.ss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/collects/scheme/private/contract-guts.ss b/collects/scheme/private/contract-guts.ss index a99017cd72..66b497ce88 100644 --- a/collects/scheme/private/contract-guts.ss +++ b/collects/scheme/private/contract-guts.ss @@ -180,8 +180,7 @@ [formatted-contract-sexp (let ([one-line (let ([sp (open-output-string)]) - (parameterize ([pretty-print-print-line print-contract-liner] - [pretty-print-columns 'infinity]) + (parameterize ([pretty-print-columns 'infinity]) (pretty-print contract-sexp sp) (get-output-string sp)))]) (if (< (string-length one-line) 30)