2011/4/27 Nadeem Abdul Hamid <[email protected]>: > What am I missing in the code below (reproduced from the "Fortifying > Macros" paper)? When run, this gives me an error: "syntax-parse: not > defined as syntax class in: binding". If I move the syntax class > definition into the bodies of define-syntax, then it works, but that > defeats the purpose of being able to define a reusable syntax class...
You'll need to move the syntax class definition into a separate module, and then `require' that module `for-syntax'. -- sam th [email protected] _________________________________________________ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users

