mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-14 01:30:19 +02:00
Do not use :export-syntax' clause in
define-module'.
Instead, use `export' directly.
This commit is contained in:
parent
b53e80aa75
commit
0e5f8e0890
1 changed files with 5 additions and 2 deletions
|
@ -42,8 +42,7 @@
|
||||||
;;;; whether to permit this exception to apply to your modifications.
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
;;;; If you do not wish that, delete this exception notice.
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (ice-9 and-let-star)
|
(define-module (ice-9 and-let-star))
|
||||||
:export-syntax (and-let*))
|
|
||||||
|
|
||||||
(defmacro and-let* (vars . body)
|
(defmacro and-let* (vars . body)
|
||||||
|
|
||||||
|
@ -69,3 +68,7 @@
|
||||||
(error "not a proper list" vars))))
|
(error "not a proper list" vars))))
|
||||||
|
|
||||||
(expand vars body))
|
(expand vars body))
|
||||||
|
|
||||||
|
(export and-let*)
|
||||||
|
|
||||||
|
;;; and-let-star.scm ends here
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue