[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.2 (rc1) now available
- From: François Perrad <francois.perrad@...>
- Date: Sat, 21 Nov 2015 18:36:44 +0100
2015-11-19 1:28 GMT+01:00 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>:
> Lua 5.3.2 (rc1) is now available for testing at
> http://www.lua.org/work/
>
I just found a glitch in indentation.
--- a/src/ltablib.c
+++ b/src/ltablib.c
@@ -51,7 +51,7 @@ static void checktab (lua_State *L, int arg, int what) {
(!(what & TAB_W) || checkfield(L, "__newindex", ++n)) &&
(!(what & TAB_L) || checkfield(L, "__len", ++n))) {
lua_pop(L, n); /* pop metatable and tested metamethods */
-}
+ }
else
luaL_argerror(L, arg, "table expected"); /* force an error */
}
François
> Lua 5.3.2 fixes all bugs listed in
> http://www.lua.org/bugs.html#5.3.1
>
> Lua 5.3.2 also contains several internal improvements and includes a
> revised reference manual.
>
> Like all minor releases, this is a bug-fix release; no new features have
> been added.
>
> The tarball is at
> http://www.lua.org/work/lua-5.3.2-rc1.tar.gz
>
> The checksums are
> MD5 1d7df444f167a039c274bb4a78468ff5 -
> SHA1 8b0d7cc745743484565cc62f33b5290bace15996 -
>
> The complete diffs from Lua 5.3.1 to rc1 are available at
> http://www.lua.org/work/diffs-lua-5.3.1-lua-5.3.2-rc1.txt
> http://www.lua.org/work/diffs-lua-5.3.1-lua-5.3.2-rc1.html
>
> The diffs are also available in unified format:
> http://www.lua.org/work/diffu-lua-5.3.1-lua-5.3.2-rc1.txt
> http://www.lua.org/work/diffu-lua-5.3.1-lua-5.3.2-rc1.html
>
> A test suite for Lua 5.3.2 is available at
> http://www.lua.org/tests/lua-5.3.2-tests.tar.gz
>
> We thank everyone for their feedback on Lua 5.3 till now.
>
> All feedback welcome. Thanks.
> --lhf
>
>