[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.2 (rc1) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 19 Nov 2015 16:49:34 -0200
> Lua 5.3.2 (rc1) is now available for testing at
> http://www.lua.org/work/
What is new:
- fixed bug: 'io.lines' does not check maximum number of options
- command line accepts ';' at the end to make it a command
- lua_pushlstring(L, NULL, 0) (and luaL_addlstring) is valid
- limits for non-linear time in pattern matching
- traceback shows fixed number of levels when initial level != 1
- fixed some internal "integer overflows" (detected with -ftrapv)
- table.sort "randomize" the pivot
- using 'snprintf' instead of 'sprintf' in C99
- some small optimizations
-- Roberto