diff --git a/collects/scribblings/reference/syntax-model.scrbl b/collects/scribblings/reference/syntax-model.scrbl index c372759127..5ec19ddc2a 100644 --- a/collects/scribblings/reference/syntax-model.scrbl +++ b/collects/scribblings/reference/syntax-model.scrbl @@ -727,7 +727,7 @@ expand code and to start evaluating expanded/compiled code. (code:comment #, @t{The following @scheme[let] expression is compiled in the original}) (code:comment #, @t{namespace, so direct references to @scheme[x] see @scheme['orig].}) (code:line - (let ([n (make-namespace)]) ; make new namespace + (let ([n (make-base-namespace)]) (code:comment #, @t{make new namespace}) (parameterize ([current-namespace n]) (eval '(define x 'new)) (code:comment #, @t{evals in the new namespace}) (display x) (code:comment #, @t{displays @scheme['orig]}) @@ -757,7 +757,7 @@ x x (f) (module m mzscheme (define x 8) (provide x)) -(require m) +(require 'm) (eval:alts x (eval 'x)) (f) ] diff --git a/collects/scribblings/reference/syntax.scrbl b/collects/scribblings/reference/syntax.scrbl index f9bd7032e3..25e6433871 100644 --- a/collects/scribblings/reference/syntax.scrbl +++ b/collects/scribblings/reference/syntax.scrbl @@ -7,6 +7,7 @@ This section describes the core syntax forms that apear in a fully expanded expression, plus a many closely-related non-core forms. +See @secref["fully-expanded"] for the core grammar. @local-table-of-contents[] diff --git a/collects/tests/mzscheme/mzlib.ss b/collects/tests/mzscheme/mzlib.ss index 297bcb00b8..8706819290 100644 --- a/collects/tests/mzscheme/mzlib.ss +++ b/collects/tests/mzscheme/mzlib.ss @@ -46,7 +46,7 @@ (load-in-sandbox "sandbox.ss") -; (load-in-sandbox "shared.ss") - FIXME +(load-in-sandbox "shared.ss") (load-in-sandbox "kw.ss")