How do I call built-in Chicken Scheme macros - specifically let-values in this instance - from my own macros?
let-values
(define-syntax ... (ir-macro-tran
This is a bit of a bug I'm afraid. A simple (import-for-syntax chicken) did the trick for me.
(import-for-syntax chicken)
In CHICKEN 5, this works without such a strange import.