Fix broken imports in `(rnrs r5rs)'.
authorJulian Graham <julian.graham@aya.yale.edu>
Fri, 14 May 2010 01:41:38 +0000 (21:41 -0400)
committerJulian Graham <julian.graham@aya.yale.edu>
Fri, 21 May 2010 01:18:04 +0000 (21:18 -0400)
* module/rnrs/6/r5rs.scm (imports): Import `null-environment' from
  `(ice-9 safe-r5rs)'; import `scheme-report-environment' from
  `(ice-9 r5rs)'.

module/rnrs/6/r5rs.scm

index fefda05..ab74854 100644 (file)
@@ -29,6 +29,6 @@
                        
                        quotient remainder modulo
                        
-                       delay force
-
-                       null-environment scheme-report-environment)))
+                       delay force)
+          (only (ice-9 r5rs) scheme-report-environment)
+          (only (ice-9 safe-r5rs) null-environment)))