mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 01:00:20 +02:00
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system directives `export', `export-syntax', `re-export' and `re-export-syntax' into the `define-module' form. This is the recommended way of exporting bindings.
This commit is contained in:
parent
7dd526de2d
commit
7338fb2827
9 changed files with 26 additions and 27 deletions
|
@ -42,7 +42,8 @@
|
|||
;;; If you do not wish that, delete this exception notice.
|
||||
|
||||
(define-module (srfi srfi-11)
|
||||
:use-module (ice-9 syncase))
|
||||
:use-module (ice-9 syncase)
|
||||
:export-syntax (let-values let*-values))
|
||||
|
||||
(cond-expand-provide (current-module) '(srfi-11))
|
||||
|
||||
|
@ -256,6 +257,3 @@
|
|||
; (if (null? vars)
|
||||
; `(begin ,@body)
|
||||
; (let-values-helper vars body)))
|
||||
|
||||
(export-syntax let-values
|
||||
let*-values)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue