lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Jan 30, 2008 5:20 PM, Luiz Henrique de Figueiredo
<lhf@tecgraf.puc-rio.br> wrote:
> This will break expressions like f "A" "B", which is interpreted as
> f("A")("B").

"A" and "B" are treated as "AB" by the lexer, so the interpreter sees f"AB".

Patch llex.c and take it look. It's really a super minor change. I
mostly just rearranged a few lines.

> Try it in your patched version...

Works fine. :)

Cheers,
Eric