Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-10-22 | added 'l_' prefix for names that can be redefined externally | Roberto Ierusalimschy | 3 | -13/+13 | |
2014-10-21 | use 'opf' (float) variants only when explicitly allowed (LUA_USE_C99) | Roberto Ierusalimschy | 1 | -9/+4 | |
2014-10-20 | comments | Roberto Ierusalimschy | 1 | -5/+6 | |
2014-10-20 | error in comment | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-10-20 | message handler always adds a traceback to messages (even if they | Roberto Ierusalimschy | 1 | -14/+14 | |
are not strings), unless they have a __tostring method. | |||||
2014-10-20 | in 'pack'/'unpack', endianness and alignment treated like options + | Roberto Ierusalimschy | 1 | -55/+52 | |
small changes in names and handling of internal options ('KOption') | |||||
2014-10-20 | does not use 'long long' when LUA_ANSI is set | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-10-17 | 'lua_stringtonum' -> 'lua_stringtonumber' | Roberto Ierusalimschy | 4 | -10/+10 | |
2014-10-17 | macros 'LUA_QL'/'LUA_QL' deprecated | Roberto Ierusalimschy | 16 | -75/+67 | |
2014-10-17 | 'debug.sizeof' removed | Roberto Ierusalimschy | 1 | -29/+1 | |
2014-10-17 | 'dumpint' and related functions replaced by 'string.pack'/'string.unpack' | Roberto Ierusalimschy | 1 | -157/+340 | |
2014-10-15 | added "_CRT_SECURE_NO_WARNINGS" for Windows (to avoid warnings about | Roberto Ierusalimschy | 1 | -9/+6 | |
several standard C functions) + small changes in '#include's | |||||
2014-10-15 | 'charpatt' -> 'charpattern' | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-10-15 | 'lua_strtonum' -> 'lua_stringtonum' | Roberto Ierusalimschy | 4 | -9/+9 | |
2014-10-10 | '$c' in 'lua_pushfstring' prints non-printable characters with | Roberto Ierusalimschy | 2 | -6/+8 | |
their codes | |||||
2014-10-08 | better handling of systems that do not support 'long long' | Roberto Ierusalimschy | 1 | -11/+28 | |
2014-10-08 | avoid warnings in macro 'luaM_reallocv' + comments | Roberto Ierusalimschy | 1 | -9/+15 | |
2014-10-08 | added some casts for the cases when lua_Number != double | Roberto Ierusalimschy | 2 | -8/+9 | |
2014-10-08 | detail ('G(L)' -> 'g') | Roberto Ierusalimschy | 1 | -6/+7 | |
2014-10-07 | 'lua_Kcontext' -> 'lua_KContext' | Roberto Ierusalimschy | 6 | -19/+19 | |
2014-10-06 | comments | Roberto Ierusalimschy | 1 | -2/+8 | |
2014-10-06 | when thread yields, real "func" is in field 'extra', not in 'func' | Roberto Ierusalimschy | 1 | -4/+8 | |
2014-10-04 | alpha -> beta | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-10-04 | added two casts to avoid warnings in VS | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-10-03 | easier way to compile Lua 32 | Roberto Ierusalimschy | 1 | -3/+12 | |
2014-10-03 | details (comments) | Roberto Ierusalimschy | 2 | -6/+6 | |
2014-10-01 | detail | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-10-01 | deprecated "cast macros" ('luaL_checkint', 'luaL_optint', etc.) | Roberto Ierusalimschy | 11 | -65/+70 | |
2014-10-01 | better to use 'long' to represent UTF-8 code points | Roberto Ierusalimschy | 4 | -12/+13 | |
2014-09-30 | 'ipairs' always stops at first nil element | Roberto Ierusalimschy | 1 | -14/+5 | |
2014-09-26 | small change to avoid bug in some versions of the clang compiler | Roberto Ierusalimschy | 1 | -2/+7 | |
2014-09-25 | detail in 'report' + message handler always is called with an | Roberto Ierusalimschy | 1 | -8/+7 | |
argument + 'report' already handles non-string error messages | |||||
2014-09-22 | 'luaL_getmetafield' returns type of metafield (instead of a boolean) | Roberto Ierusalimschy | 3 | -24/+25 | |
2014-09-04 | size for array part of a table ('sizearray') changed from 'int' to | Roberto Ierusalimschy | 6 | -74/+91 | |
'unsigned int', which allows twice as many elements in the array part | |||||
2014-09-03 | weak tables that must be retraversed are kept in 'grayagain' list | Roberto Ierusalimschy | 1 | -42/+38 | |
until atomic phase (instead of going to their special lists) + more comments | |||||
2014-09-01 | detail (error message from 'coroutine.status') | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-09-01 | 'T.gccolor' classify dead objects too | Roberto Ierusalimschy | 1 | -4/+7 | |
2014-09-01 | 'linktable' -> 'linkgclist' (and used for all links with 'gclist') | Roberto Ierusalimschy | 1 | -22/+16 | |
2014-09-01 | bug: Ephemeron table can wrongly collect entry with strong key | Roberto Ierusalimschy | 1 | -2/+27 | |
2014-08-27 | detail | Roberto Ierusalimschy | 1 | -5/+3 | |
2014-08-22 | new option 'p' for 'debug.sizeof' (size of a pointer) | Roberto Ierusalimschy | 1 | -2/+3 | |
2014-08-21 | new functions 'lua_geti/lua_seti' (non raw) | Roberto Ierusalimschy | 4 | -29/+35 | |
2014-08-21 | 'table.copy' -> 'table.move' + optional parameter moved to the end + | Roberto Ierusalimschy | 1 | -21/+22 | |
several functions operate on "virtual" tables too | |||||
2014-08-21 | 'Csize' -> 'sizeof' + removed its 'b' option | Roberto Ierusalimschy | 1 | -3/+2 | |
2014-08-20 | [un]'dumpint' -> [un]'dumpinteger' | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-08-01 | 'lua_Ctx' -> 'lua_Kcontext' | Roberto Ierusalimschy | 7 | -28/+29 | |
2014-08-01 | details in comments | Roberto Ierusalimschy | 3 | -7/+7 | |
2014-08-01 | added cast to avoid warning | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-07-31 | release changed to (5.3) alphav5.3-alpha | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-07-30 | new macro 'cvt2num' to better control whether strings are convertible | Roberto Ierusalimschy | 2 | -11/+18 | |
to numbers |