<div dir="ltr"><div style>I CC a discussion in the bug tracking system about ,@ and friends. I copy it here because:</div><div style><br></div><div style>* I do not consider it valid a single person telling me what is the right interpretation of the standard.</div>

<div style><br></div><div style>* I am a bit tired of other implementations claiming to be 100% ANSI compliant and introducing nonconformant things that other people end up taking as the right thing.</div><div style><br>
</div>
<div style>In any case, <b>I have been convinced in the past</b> about changing things, but this change seems dramatic enough (it touches various things in the reader), that I would rather wait for compelling arguments.</div>

<div style><br></div><div style>Best,</div><div style><br></div><div style>Juanjo</div><div><br></div><div>----</div><div><br></div><div style>The original posts and thread: <a href="http://sourceforge.net/p/ecls/bugs/251/">http://sourceforge.net/p/ecls/bugs/251/</a></div>

<div style><br></div><div style>The grammar for backquote:</div><div style><a href="http://www.lispworks.com/documentation/HyperSpec/Body/02_df.htm">http://www.lispworks.com/documentation/HyperSpec/Body/02_df.htm</a><br>
</div>
<div><br></div><div style>My last answer:</div><div><br></div><div>The behaviour of backquote is defined in terms of what forms they produce and the reader in ECL applies strictly the specification, by which there is NO NEED to create any intermediate structure at all: ,@ is recognized inside a list and produces a an append form, "," does something similar, etc. The result is that there is no need to spill out backquote/quote/splice symbols unlike what SBCL does<br>

</div><div><br></div><div>    [SBCL] * ``(a ,@,@'((list a)))</div><div>    </div><div>    `(A ,@(LIST A))</div><div>    </div><div>    [ECL] > ``(a ,@,@'((list a)))</div><div>    </div><div>    (LIST* 'A (LIST A))</div>

<div><br></div><div>I personally prefer the last approach, as it produces code that is directly Common Lisp and not some set of forms that still have to be macroexpanded.</div><div><br></div><div>It is because of this difference that your expected behavior does not work at all. When the reader sees ``(... ,@,@(list a b c) ...) it tries to generate the form associated to ,@ but it lacks completely a context, since that ,@ does not form part of any list at all.</div>

<div><br></div><div>Let me insist on this:</div><div><br></div><div>1) In the ANSI specification backquote syntax is defined with a single level of  equalities, without any recursive behavior where inner behavior depends on external conditions.</div>

<div><br></div><div>2) Your expected behavior is that ,@ acts recursively on the elements produced by some ,@. This requires some deeper definition than the one provided by ANSI. </div><div><br></div><div>3) Moreover, this last definition is contradictory with the one in ANSI, which states that the elements of ,@ are spliced or spilled in place in the form. If I relax this definition ignoring the fact that the ,@ is not inside any list I should get</div>

<div><br></div><div>    ``(... ,@,@(list a b c) ...) -> `(... ,@a b c ...) [1]</div><div><br></div><div>while your requirement is</div><div><br></div><div>     ``(... ,@,@(list a b c) ...) -> `(... ,@a ,@b ,@c ...)</div>

<div><br></div><div>Note that [1] could be somebody's own interpretation of what is closer to the spirit and still not being covered by the current specification.</div><div><br></div><div class="gmail_extra"><div><br>

</div><div>-- <br></div>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a>
</div></div>