lua-users home
lua-l archive

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


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).