From 1003c2206142c0570c76709abc69f2e06b0e2431 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Fri, 2 Oct 2009 16:39:24 +0000 Subject: [PATCH] changed warning when there is no 'name' field svn: r16217 --- collects/planet/util.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/planet/util.ss b/collects/planet/util.ss index 034ca9d465..275afacb56 100644 --- a/collects/planet/util.ss +++ b/collects/planet/util.ss @@ -600,7 +600,7 @@ [name ; field name string? ; check (announce "Name: ~a\n" name) ; success action - (warn "Package's info.ss file has no name field. Without a name, PLT Scheme will not compile your package.") ;failure action + (warn "Package's info.ss file has no name field.") ;failure action ] [blurb (λ (b) (and (list? b) (andmap xexpr? b)))