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 /oop/goops/compile.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 'oop/goops/compile.scm')
-rw-r--r-- | oop/goops/compile.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/oop/goops/compile.scm b/oop/goops/compile.scm index a538215ae..e84d3d0d9 100644 --- a/oop/goops/compile.scm +++ b/oop/goops/compile.scm @@ -44,12 +44,11 @@ (define-module (oop goops compile) :use-module (oop goops) :use-module (oop goops util) + :export (compute-cmethod compute-entry-with-cmethod + compile-method cmethod-code cmethod-environment) :no-backtrace ) -(export compute-cmethod compute-entry-with-cmethod - compile-method cmethod-code cmethod-environment) - (define source-formals cadr) (define source-body cddr) |