On Mon, Jan 16, 2012 at 7:57 AM, Marijn <[email protected]> wrote: > > ((_ ((id rule) ...)) > (with-syntax (((dep ...) (free-vars (expand #'(rule ...)))))
You need to use `local-expand', not `expand', here. Probably like this: (local-expand #'(rule ...) 'expression '()) -- sam th [email protected] ____________________ Racket Users list: http://lists.racket-lang.org/users

