[plt-scheme] dumb question

From: Jos Koot (jos.koot at telefonica.net)
Date: Fri Dec 19 06:51:00 EST 2008

Hi,

(module x mzscheme
 (provide (all-from-except mzscheme add1))
 (add1 1))

and

(module x scheme
 (add1 1))

Work ok, but:

(module x scheme
 (provide (except-out scheme add1))
 (add1 1))

Gives:

except-out: identifier to remove `add1' not included in nested provide spec in: scheme

How come? Am I overlooking some parts of the docs?
Thanks, Jos
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20081219/5a7292bd/attachment.html>

Posted on the users mailing list.