From 1575e23ee44dd9c053798ea79352258124674327 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 18 Oct 2001 19:43:43 +0000 Subject: [PATCH] * 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. --- test-suite/ChangeLog | 7 +++++++ test-suite/lib.scm | 7 +++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index a7e2c8678..5f42487a8 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,10 @@ +2001-10-18 Mikael Djurfeldt + + * 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 * tests/numbers.test (fixnum-bit): compute dynamically. diff --git a/test-suite/lib.scm b/test-suite/lib.scm index a5a44fa8a..de242bd11 100644 --- a/test-suite/lib.scm +++ b/test-suite/lib.scm @@ -18,9 +18,8 @@ (define-module (test-suite lib) :use-module (ice-9 stack-catch) - :use-module (ice-9 regex)) - -(export + :use-module (ice-9 regex) + :export ( ;; Exceptions which are commonly being tested for. exception:out-of-range exception:unbound-var @@ -40,7 +39,7 @@ make-log-reporter full-reporter user-reporter - format-test-name) + format-test-name)) ;;;; If you're using Emacs's Scheme mode: