The use of quotes originated from the project "Applicative syntax-rules: macros that compose better" by Oleg Kiselyov:
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.
--