Hello I'm porting the guile macro system (module/ice-9/psyntax.scm) to my own programming language. Now I have a problem with source wrapping: when I use eval to compile syntax transformers, for example
(make-syntax-transformer name 'macro (eval handler
(current-module)))
the procedure source-wrap (in ported version of psyntax.scm) gets
called automatically. How can I prevent this?
- Tommi Höynälänmaa
