1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-30 08:50:23 +02:00

* 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.
This commit is contained in:
Mikael Djurfeldt 2001-10-18 19:43:43 +00:00
parent 7338fb2827
commit 1575e23ee4
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2001-10-18 Mikael Djurfeldt <mdj@linnaeus>
* 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.
2001-09-21 Rob Browning <rlb@defaultvalue.org> 2001-09-21 Rob Browning <rlb@defaultvalue.org>
* tests/numbers.test (fixnum-bit): compute dynamically. * tests/numbers.test (fixnum-bit): compute dynamically.

View file

@ -18,9 +18,8 @@
(define-module (test-suite lib) (define-module (test-suite lib)
:use-module (ice-9 stack-catch) :use-module (ice-9 stack-catch)
:use-module (ice-9 regex)) :use-module (ice-9 regex)
:export (
(export
;; Exceptions which are commonly being tested for. ;; Exceptions which are commonly being tested for.
exception:out-of-range exception:unbound-var exception:out-of-range exception:unbound-var
@ -40,7 +39,7 @@
make-log-reporter make-log-reporter
full-reporter full-reporter
user-reporter user-reporter
format-test-name) format-test-name))
;;;; If you're using Emacs's Scheme mode: ;;;; If you're using Emacs's Scheme mode: