diff options
author | Andy Wingo <wingo@pobox.com> | 2008-05-02 18:59:04 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-05-02 18:59:04 +0200 |
commit | 063fd30bbe68c67475dc46ba5d4cf49bac321305 (patch) | |
tree | 813525c1ba63238c4a5caf97988699d1d379a697 /module/system/base/syntax.scm | |
parent | 0a8a9780b8ea829af0e06578541fe9a1fb71530c (diff) | |
download | guile-063fd30bbe68c67475dc46ba5d4cf49bac321305.tar.gz |
clean up some syntax imports and exports
* module/system/base/syntax.scm (system): Don't re-export receive or
and-let*; modules should explicitly import these if they want to. Don't
export an empty stack-catch definition!
* module/system/repl/command.scm (system): Pull in and-let*.
* module/system/vm/disasm.scm (system): Don't import and-let*.
Diffstat (limited to 'module/system/base/syntax.scm')
-rw-r--r-- | module/system/base/syntax.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/system/base/syntax.scm b/module/system/base/syntax.scm index 4af70c0c0..7f23df601 100644 --- a/module/system/base/syntax.scm +++ b/module/system/base/syntax.scm @@ -20,10 +20,7 @@ ;;; Code: (define-module (system base syntax) - :use-module (ice-9 receive) - :use-module (ice-9 and-let-star) - :export (stack-catch receive and-let* - %make-struct slot + :export (%make-struct slot %slot-1 %slot-2 %slot-3 %slot-4 %slot-5 %slot-6 %slot-7 %slot-8 %slot-9 list-fold) |