The use of quotes originated from the project "Applicative syntax-rules: macros that compose better" by Oleg Kiselyov:

http://okmij.org/ftp/Scheme/macros.html#ck-macros

I think the use of quotes in macro arguments of eager macros and in the eager macro templates is uncontroversial. It remains to discuss the use of quotes (vs. unquotes) in patterns (analogues to formal arguments of lambda expressions).

The question raised by John is whether the alternative syntax

(define-syntax id
  (em-syntax-rules ()
   ((id ,x) 'x)))

is better than the (currently specified) version

(define-syntax id
  (em-syntax-rules ()
   ((id 'x) 'x)))

(Recall that in the current draft, a (top-level) pattern 'x means that the corresponding macro argument is eagerly evaluated.)

I think that the specified version is the correct (and more intuitive) one because of the way formal arguments that are function applications are usually handled in mathematics and everyday language.

Consider the function f: (-pi/2, pi/2) -> R defined by

f(arctan(x)) := x*x.

This definition is usually understood to mean

f(y) := tan(y) * tan(y).

In other words, function application in formal argument lists become function applications wherever the arguments are referenced, but by the inverse function.

Seeing unquote as a somewhat inverse to quote, this means that

(define-syntax id
  (em-syntax-rules ()
   ((id 'x) 'x)))

is correctly interpreted as (the hypothetical code)

(define-syntax id
 (em-syntax-rules ()
  ((id y) ',y)))

And this makes perfect sense. The id macro applied to a quoted argument first strips the quotes before they are applied again in the output.

--

Marc

John Cowan <xxxxxx@ccil.org> schrieb am Di., 18. Juli 2017 um 03:39 Uhr:

On Mon, Jul 17, 2017 at 8:23 PM, Arthur A. Gleckler <xxxxxx@speechcode.com> wrote:

Marc Nieper-Wißkirchen, author of SRFI 148, Eager
syntax-rules, is ready for "last call" for this SRFI. 

I'm wondering if quoted patterns shouldn't be unquoted patterns (that is, prefixed with , instead of ').   I probably am not understanding the reason for the term.  Can you clarify?

-- 
John Cowan          http://vrici.lojban.org/~cowan        xxxxxx@ccil.org
"Repeat this until 'update-mounts -v' shows no updates.
You may well have to log in to particular machines, hunt down
people who still have processes running, and kill them."

To unsubscribe from this list please go to http://www.simplelists.com/confirm.php?u=WayvK6iwmHINAznW2ePeHwbeWO2K4TOY