From 926b0add46486c1a77e8b41c7da2affad67bbe33 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 27 Feb 2016 13:11:45 -0500 Subject: 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. --- sly.scm | 3 +-- 1 file changed, 1 insertion(+), 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) -- cgit v1.2.3