We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa272c8 commit fd9a5d6Copy full SHA for fd9a5d6
testing.scm
@@ -47,6 +47,9 @@
47
(provide 'srfi-64)
48
(provide 'testing)
49
(require 'srfi-35))
50
+ (gauche
51
+ (define-module srfi-64)
52
+ (select-module srfi-64))
53
(else
54
))
55
@@ -62,6 +65,8 @@
62
65
(syntax-rules ()
63
66
((%test-export test-begin . other-names)
64
67
(module-export %test-begin test-begin . other-names)))))
68
69
+ (define-syntax %test-export export))
70
71
(define-syntax %test-export
72
@@ -1030,6 +1035,7 @@
1030
1035
(if (eof-object? (read-char port))
1031
1036
(cond-expand
1032
1037
(guile (eval form (current-module)))
1038
+ (gauche (eval form ((with-module gauche.internal vm-current-module))))
1033
1039
(else (eval form)))
1034
1040
1041
(srfi-23 (error "(not at eof)"))
0 commit comments