From: Slobodan Blazeski on
Is it possible to add it if it
From: Pascal Costanza on
Slobodan Blazeski wrote:
> Is it possible to add it if it

Yes, see the appendix of CLtL2. ;)

Pascal

--
1st European Lisp Symposium (ELS'08)
http://prog.vub.ac.be/~pcostanza/els08/

My website: http://p-cos.net
Common Lisp Document Repository: http://cdr.eurolisp.org
Closer to MOP & ContextL: http://common-lisp.net/project/closer/
From: Kaz Kylheku on
On Apr 15, 4:39 am, Slobodan Blazeski <slobodan.blaze...(a)gmail.com>
wrote:
> Is it possible to add it if it

It's impossible to add the ,@ read syntax in a portable way over an
existing backquote implementation. How ,@ works is intimately tied to
how the backquote implementation works as a whole.

You can write the entire backquote implementation in a portable way,
though.
From: attila.lendvai on
On ápr. 15, 13:39, Slobodan Blazeski <slobodan.blaze...(a)gmail.com>
wrote:
> Is it possible to add it if it

on a somewhat related note, http://common-lisp.net/project/cl-quasi-quote/
is a user lib with something similar to the ` and co. in the common
lisp standard, but this lib is for non-lisp quoted parts interleaved
with parts being generated at runtime by lisp code.

it has , and ,@ too.

- attila