guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/ice-9 ChangeLog r5rs.scm


From: Martin Grabmueller
Subject: guile/guile-core/ice-9 ChangeLog r5rs.scm
Date: Tue, 17 Jul 2001 11:59:17 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/07/17 11:59:17

Modified files:
        guile-core/ice-9: ChangeLog r5rs.scm 

Log message:
        * r5rs.scm: Use `re-export' instead of `export' for re-exported
        primitives.  Thanks Neil!

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/ice-9/ChangeLog.diff?cvsroot=OldCVS&tr1=1.463&tr2=1.464&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/ice-9/r5rs.scm.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: guile/guile-core/ice-9/ChangeLog
diff -u guile/guile-core/ice-9/ChangeLog:1.463 
guile/guile-core/ice-9/ChangeLog:1.464
--- guile/guile-core/ice-9/ChangeLog:1.463      Thu Jul 12 16:27:52 2001
+++ guile/guile-core/ice-9/ChangeLog    Tue Jul 17 11:59:17 2001
@@ -1,3 +1,8 @@
+2001-07-17  Martin Grabmueller  <address@hidden>
+
+       * r5rs.scm: Use `re-export' instead of `export' for re-exported
+       primitives.  Thanks Neil!
+
 2001-07-13  Marius Vollmer  <address@hidden>
 
        * safe-r5rs.scm: Use `re-export' instead of `export' for
Index: guile/guile-core/ice-9/r5rs.scm
diff -u guile/guile-core/ice-9/r5rs.scm:1.3 guile/guile-core/ice-9/r5rs.scm:1.4
--- guile/guile-core/ice-9/r5rs.scm:1.3 Sun Jun  3 16:29:45 2001
+++ guile/guile-core/ice-9/r5rs.scm     Tue Jul 17 11:59:17 2001
@@ -47,17 +47,19 @@
 (module-use! %module-public-interface (resolve-interface '(ice-9 safe-r5rs)))
 
 (export scheme-report-environment
-       interaction-environment
-
-       call-with-input-file call-with-output-file
-       with-input-from-file with-output-to-file
-       open-input-file open-output-file
-       close-input-port close-output-port
-
-       load
        ;;transcript-on
        ;;transcript-off
        )
+
+(re-export interaction-environment
+
+          call-with-input-file call-with-output-file
+          with-input-from-file with-output-to-file
+          open-input-file open-output-file
+          close-input-port close-output-port
+
+          load
+          )
 
 (define scheme-report-interface %module-public-interface)
 



reply via email to

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