[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Defining quasisyntax in terms of syntax-case

This page is part of the web mail archives of SRFI 93 from before July 7th, 2015. The new archives for SRFI 93 contain all messages, not just those from before July 7th, 2015.



On Fri, 30 Jun 2006, David Feuer wrote:

Does it work correctly with (... ...), etc.?

Yes, if the native SYNTAX does.  Quasisyntax does not even see
ellipses, but simply expands to a SYNTAX expression that does.
For example, it expands

  (quasisyntax (,a ... (... ...)))

   ==> (with-syntax ((t a))
          (syntax (t ... (... ...))))

so ellipses are handled by SYNTAX.

Andre