diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-10-21 09:49:19 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-10-21 09:49:19 +0000 |
commit | 1a179b03b02d7967c9eba7ef6f196fcbfbafa15b (patch) | |
tree | a8de78f90c464e285db1136d5857969978d3ad10 /srfi/srfi-10.scm | |
parent | b461abe73f84e023fa3df782ea82b3582a48412f (diff) | |
download | guile-1a179b03b02d7967c9eba7ef6f196fcbfbafa15b.tar.gz |
* lib.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.
* 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.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.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.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.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.
Diffstat (limited to 'srfi/srfi-10.scm')
-rw-r--r-- | srfi/srfi-10.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/srfi/srfi-10.scm b/srfi/srfi-10.scm index f24ec0d94..e3327548c 100644 --- a/srfi/srfi-10.scm +++ b/srfi/srfi-10.scm @@ -69,9 +69,8 @@ ;;; Code: (define-module (srfi srfi-10) - #:use-module (ice-9 rdelim)) - -(export define-reader-ctor) + :use-module (ice-9 rdelim) + :export (define-reader-ctor)) (cond-expand-provide (current-module) '(srfi-10)) |