aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès2007-11-28 18:17:33 +0100
committerLudovic Courtès2007-11-28 18:17:33 +0100
commitb7230d95c0a5314256c019d9cfdc6fc4bfc3dd0a (patch)
tree1435c4498ddf8b1d8f47829944e63c07eb7ca1e1
parentd05d31adc3b3fb96aa66ed99ef3aa0a40bea5455 (diff)
downloadskribilo-b7230d95c0a5314256c019d9cfdc6fc4bfc3dd0a.tar.gz
skribilo-b7230d95c0a5314256c019d9cfdc6fc4bfc3dd0a.tar.lz
skribilo-b7230d95c0a5314256c019d9cfdc6fc4bfc3dd0a.zip
Make the default set of bindings even smaller.
* src/guile/skribilo/module.scm (%skribilo-user-imports): Remove `ast' and `config'.
-rw-r--r--src/guile/skribilo/module.scm7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/guile/skribilo/module.scm b/src/guile/skribilo/module.scm
index 4655309..dedfdd0 100644
--- a/src/guile/skribilo/module.scm
+++ b/src/guile/skribilo/module.scm
@@ -39,11 +39,8 @@
(define %skribilo-user-imports
;; List of modules needed by Skribilo modules. The list is much shorter
;; than in the Skribe case, as we want to only provide the minimal set of
- ;; bindings that documents need. In particular, only the `base' package is
- ;; imported by default.
- '((skribilo ast)
- (skribilo config)
- (skribilo package base)))
+ ;; bindings that documents need.
+ '((skribilo package base)))
(define %skribe-user-imports
;; List of modules imported by legacy Skribe documents.