From 28ba6a19197199d80906aeeecc1bd7a4bbee078d Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 26 Oct 2010 07:13:53 -0400 Subject: [PATCH] Add `racket/list' and `racket/string' to the web language, adjust existing requires. (It's supposed to be a convenient language...) original commit: ed5033159a6a526d717aa2c1396c351e0f1da5e3 --- collects/meta/web/html/main.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/collects/meta/web/html/main.rkt b/collects/meta/web/html/main.rkt index aab0a8c2..7b051527 100644 --- a/collects/meta/web/html/main.rkt +++ b/collects/meta/web/html/main.rkt @@ -7,9 +7,10 @@ ;; provide a `text' alias and an `include' alias (rename-out [begin/text text] [include/text include]) ;; main functionality - (all-from-out "xml.rkt" "html.rkt" "resource.rkt")) + (all-from-out "xml.rkt" "html.rkt" "resource.rkt" + racket/list racket/string)) -(require "xml.rkt" "html.rkt" "resource.rkt" +(require "xml.rkt" "html.rkt" "resource.rkt" racket/list racket/string scribble/text scribble/text/syntax-utils (for-syntax racket/base)) (define-syntax (top stx)