[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.2 (rc2) now available
- From: François Perrad <francois.perrad@...>
- Date: Fri, 22 Feb 2013 22:43:48 +0100
2013/2/22 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>:
> Lua 5.2.2 (rc2) is now available at
> http://www.lua.org/work/lua-5.2.2-rc2.tar.gz
>
> MD5 db604978672ef413ca4d7139106f9824 -
> SHA1 3e210e95be4e231329db6d020e422c5bd31bad98 -
>
> Lua 5.2.2 fixes all bugs listed in http://www.lua.org/bugs.html#5.2.1 .
>
> Lua 5.2.2 also fixes several other minors glitches and includes
> a revised reference manual.
>
> The complete diffs from rc1 to rc2 are available at
> http://www.lua.org/work/diffs-lua-5.2.2-rc1-rc2.txt
>
> A test suite for Lua 5.2.2 is available at
> http://www.lua.org/tests/5.2/
>
> We thank everyone for their feedback on Lua 5.2 till now.
>
> All feedback welcome. Thanks.
> --lhf
>
>
The behavior of table.insert & table.remove have changed, now they can
throw an error "out of bounds".
I found a recent discussion about this topic : see
http://lua-users.org/lists/lua-l/2013-01/msg00442.html
$ lua -e "table.insert({}, 42, 'elt')"
lua: (command line):1: bad argument #2 to 'insert' (position out of bounds)
François