summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-02-27 13:11:45 -0500
committerDavid Thompson <dthompson2@worcester.edu>2016-02-27 13:11:45 -0500
commit926b0add46486c1a77e8b41c7da2affad67bbe33 (patch)
treedd032dceb13d72dc2ffa7aa6c12e27b35a4b19f8
parent80de608c724a1eebdb0605e4a26251553ec64142 (diff)
Don't export (sly agenda) symbols in (sly) module.
The agenda is really more of a private interface to keep the game moving behind the scenes, so it's best to not present it to the user by default. * sly.scm: Remove (sly agenda) from list of modules to export public symbols from.
-rw-r--r--sly.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/sly.scm b/sly.scm
index 6eb3698..727491b 100644
--- a/sly.scm
+++ b/sly.scm
@@ -26,8 +26,7 @@
(eval-when (eval load compile)
(begin
(define %public-modules
- '((sly agenda)
- (sly game)
+ '((sly game)
(sly signal)
(sly window)
(sly repl)