[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: patch: C-style string lexing
- From: David Manura <dm.lua@...>
- Date: Fri, 1 Feb 2008 23:14:58 +0000 (UTC)
Luiz Henrique de Figueiredo writes:
> > Eric, your patch could likely be salvaged if it were to concatenate adjacent
> > strings only when they are preceded by an open parenthesis:
> Yes, but this is not as general as possible, because it'd not work for
> things like this: a(1,"x" "y",2)
That should be clarified as "immediately preceded". The above case would still
be a syntax error unless rewritten as a(1,("x" "y"),2).