1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-13 17:20:21 +02:00

Do not use :export-syntax' clause in define-module'.

Instead, use `export' directly.
This commit is contained in:
Thien-Thi Nguyen 2002-05-03 22:42:19 +00:00
parent b53e80aa75
commit 0e5f8e0890

View file

@ -42,8 +42,7 @@
;;;; whether to permit this exception to apply to your modifications.
;;;; If you do not wish that, delete this exception notice.
(define-module (ice-9 and-let-star)
:export-syntax (and-let*))
(define-module (ice-9 and-let-star))
(defmacro and-let* (vars . body)
@ -69,3 +68,7 @@
(error "not a proper list" vars))))
(expand vars body))
(export and-let*)
;;; and-let-star.scm ends here