1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 16:50:21 +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:
Mikael Djurfeldt 2001-10-18 19:43:07 +00:00
parent 7dd526de2d
commit 7338fb2827
9 changed files with 26 additions and 27 deletions

View file

@ -41,9 +41,8 @@
;;;; whether to permit this exception to apply to your modifications.
;;;; If you do not wish that, delete this exception notice.
(define-module (srfi srfi-14))
(export
(define-module (srfi srfi-14)
:export (
;;; General procedures
char-set?
char-set=
@ -112,7 +111,7 @@
char-set:ascii
char-set:empty
char-set:full
)
))
(cond-expand-provide (current-module) '(srfi-14))