This website requires JavaScript.
Explore
Help
Register
Sign In
conservatory
/
ikarus
Watch
4
Star
0
Fork
You've already forked ikarus
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
3ce6d037e4
ikarus
/
scheme
/
last-revision
2 lines
5 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Fixed a bug in module imports where some marks were missing in action. (Note from Kent, extracted from chez scheme release notes, follows) This always worked: (let () (define-syntax from (syntax-rules () [(_ m v) (let () (import m) v)])) (module a (x) (define x 'x-of-a)) (from a x)) Didn't work before this change: (let () (define-syntax x-from-a (syntax-rules () [(_) (let () (import a) x)])) (module a (x) (define x 'x-of-a)) (x-from-a))
2008-04-19 17:55:30 -04:00
1451