[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.1.3-rc1 now available
- From: Kurt Jung <kurt-gmane@...>
- Date: Thu, 17 Jan 2008 15:14:27 -0500
This release might be a good time to fix a little glitch in
etc/min.c, line 21:
else if (lua_isnil(L,i)==2)
should be
else if (lua_isnil(L,i))
Also, the manual states in section 2.1
To put a double (single) quote, a newline, a backslash, or an
embedded zero inside a literal string enclosed by double (single)
quotes you must use an escape sequence.
In order to accommodate a change in llex.c from Lua 5.0 to Lua 5.1,
I believe this should be amended to
To put a double (single) quote, a newline, a carriage return, a
backslash, or an embedded zero inside a literal string enclosed
by double (single) quotes you must use an escape sequence.
-- Kurt Jung