Hello! "Andy Wingo" <wi...@pobox.com> writes:
> * libguile/macros.h: Add API for syncase macros. Perhaps these should be made `SCM_INTERNAL'? > +SCM_DEFINE (scm_make_syncase_macro, "make-syncase-macro", 2, 0, 0, > + (SCM type, SCM binding), > + "Return a @dfn{macro} that requires expansion by syntax-case.\n" [...] > +SCM_DEFINE (scm_make_extended_syncase_macro, "make-extended-syncase-macro", > 3, 0, 0, > + (SCM m, SCM type, SCM binding), > + "Extend a core macro @var{m} with a syntax-case binding.") Can you explain how it works? Having a SMOB type for `syntax-case' macros seems counter-intuitive to me. :-) Thanks, Ludo'.