1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-19 02:00:26 +02:00

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*.
This commit is contained in:
Andy Wingo 2008-05-02 18:59:04 +02:00
parent 0a8a9780b8
commit 063fd30bbe
3 changed files with 3 additions and 6 deletions

View file

@ -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)