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:
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.
|
||||
;;;; 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue