lua-users home
lua-l archive

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


2013/2/19 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>:
> Lua 5.2.2 (rc1) is now available at
>         http://www.lua.org/work/lua-5.2.2-rc1.tar.gz
>
> MD5     71fe544a80fdbbd4bc4fecd667e95c5c  -
> SHA1    f4693aa9ccd07ef8c8d2714cf6cd41ad90c881d4  -
>
> 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 Lua 5.2.1 are available at
>         http://www.lua.org/work/diffs-lua-5.2.1-lua-5.2.2-rc1.txt
>
> 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