This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: unquote in quasisyntax


* Per Bothner [2012-02-06 08:21] writes:

> I just realized we have a slight compatibility problem.
>
> Kawa has long supported (quasisyntax FORM) and the abbreviation #`FORM.
> To unquote, you would use (unquote FORM) or the abbreviation ,FORM.
> This is consistent with SRFI-72, but it is not consistent with most
> syntax-case implementations, including R6RS and Racket (MzScheme).
> These instead use (unsyntax FORM) or #,FORM.

It seems that datum->syntax-object and syntax-object->datum is only used
in SRFI-72.  Everybody else (R6RS, Racket, Chez) seems to use
datum->syntax and syntax->datum.  Shouldn't Kawa use the shorter names
or provide aliases?

Helmut


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]