From c719f1c5065b086036275cf111992e6a2159071d Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Thu, 27 Dec 2007 16:32:48 +0000 Subject: [PATCH] newline after not-found message svn: r8138 --- collects/scheme/help.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scheme/help.ss b/collects/scheme/help.ss index 477785e8a2..15c1803646 100644 --- a/collects/scheme/help.ss +++ b/collects/scheme/help.ss @@ -92,7 +92,7 @@ (set! libs (append libs (exported-index-desc-from-libs (entry-desc entry))))))) idx) (if (null? libs) - (printf "Not found in any library's documentation: ~a" sym) + (printf "Not found in any library's documentation: ~a\n" sym) (begin (printf "No documentation for current binding, but provided by:\n") (let loop ([libs libs])