diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-02-27 13:11:45 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-02-27 13:11:45 -0500 |
commit | 926b0add46486c1a77e8b41c7da2affad67bbe33 (patch) | |
tree | dd032dceb13d72dc2ffa7aa6c12e27b35a4b19f8 | |
parent | 80de608c724a1eebdb0605e4a26251553ec64142 (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.scm | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) |