guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/test-suite ChangeLog lib.scm


From: Mikael Djurfeldt
Subject: guile/guile-core/test-suite ChangeLog lib.scm
Date: Sun, 21 Oct 2001 05:49:20 -0400

CVSROOT:        /cvs
Module name:    guile
Changes by:     Mikael Djurfeldt <address@hidden>       01/10/21 05:49:19

Modified files:
        guile-core/test-suite: ChangeLog lib.scm 

Log message:
        * 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.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/test-suite/ChangeLog.diff?cvsroot=OldCVS&tr1=1.109&tr2=1.110&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/test-suite/lib.scm.diff?cvsroot=OldCVS&tr1=1.19&tr2=1.20&r1=text&r2=text

Patches:
Index: guile/guile-core/test-suite/ChangeLog
diff -u guile/guile-core/test-suite/ChangeLog:1.109 
guile/guile-core/test-suite/ChangeLog:1.110
--- guile/guile-core/test-suite/ChangeLog:1.109 Thu Oct 18 17:59:29 2001
+++ guile/guile-core/test-suite/ChangeLog       Sun Oct 21 05:49:19 2001
@@ -1,3 +1,10 @@
+2001-10-21  Mikael Djurfeldt  <address@hidden>
+
+       * 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-10-18  Dirk Herrmann  <address@hidden>
 
        * tests/syntax.test:  Added test cases for 'cond =>' syntax with
Index: guile/guile-core/test-suite/lib.scm
diff -u guile/guile-core/test-suite/lib.scm:1.19 
guile/guile-core/test-suite/lib.scm:1.20
--- guile/guile-core/test-suite/lib.scm:1.19    Wed Aug  1 05:57:01 2001
+++ guile/guile-core/test-suite/lib.scm Sun Oct 21 05:49:19 2001
@@ -18,10 +18,9 @@
 
 (define-module (test-suite lib)
   :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.
  exception:out-of-range exception:unbound-var
  exception:wrong-num-args exception:wrong-type-arg
@@ -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:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]