From fdcd255756147500685d9ef2e3090b694c32b8df Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sat, 21 Jun 2014 23:40:00 -0700 Subject: [PATCH] remove reader-here-path & reader-mode from pollen source exports --- main-base.rkt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main-base.rkt b/main-base.rkt index dcf66f8..ecb5dc8 100644 --- a/main-base.rkt +++ b/main-base.rkt @@ -27,8 +27,10 @@ (require pollen/top pollen/world) (provide (all-from-out pollen/top pollen/world)) - ;; for anything defined in pollen source file - (provide (all-defined-out)) + ;; provide everything defined in pollen source file + ;; except reader-here-path & reader-mode, which were only for internal use + ;; and will conflict if this source is imported into another + (provide (except-out (all-defined-out) reader-here-path reader-mode)) body-exprs (... ...))