[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: patch: C-style string lexing
- From: "Eric Tetz" <erictetz@...>
- Date: Wed, 30 Jan 2008 17:26:02 -0800
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