| Commit message (Expand) | Author | Age | Files | Lines |
* | 'setkey' -> 'setnodekey' (to avoid conflicts with POSIX)v5.3.0 | Roberto Ierusalimschy | 2015-01-05 | 2 | -4/+4 |
* | new macro 'cast_func' adds '__extension__' (in gnu compilers) when | Roberto Ierusalimschy | 2015-01-05 | 1 | -2/+14 |
* | includes 'stddef.h' (as it uses NULL) | Roberto Ierusalimschy | 2015-01-05 | 2 | -5/+9 |
* | detail (added -Wconversion as a comment, to be used ocasionally) | Roberto Ierusalimschy | 2015-01-02 | 1 | -0/+1 |
* | 'lua_setlocal' should not pop value when failing (to be consistent | Roberto Ierusalimschy | 2015-01-02 | 2 | -5/+11 |
* | clearer(?) code (also avoids a warning about 'c' being used | Roberto Ierusalimschy | 2015-01-02 | 1 | -5/+3 |
* | does not define _XOPEN_SOURCE when LUA_USE_C89 is defined + defining | Roberto Ierusalimschy | 2014-12-29 | 1 | -2/+8 |
* | all "divisions" (div,idiv,mod) by zero are not folded, to avoid | Roberto Ierusalimschy | 2014-12-29 | 1 | -24/+10 |
* | detail (macro 'luai_numidiv' uses 'luai_numdiv' to compute the division) | Roberto Ierusalimschy | 2014-12-29 | 1 | -2/+2 |
* | bug: 'random' limit is 2^31-1, not RAND_MAX | Roberto Ierusalimschy | 2014-12-27 | 1 | -3/+5 |
* | details | Roberto Ierusalimschy | 2014-12-27 | 1 | -4/+4 |
* | change in macro 'vmcase', avoding code inside it. (Code inside the | Roberto Ierusalimschy | 2014-12-27 | 1 | -97/+142 |
* | new year (2015) | Roberto Ierusalimschy | 2014-12-26 | 1 | -3/+3 |
* | detail (to avoid warnings) | Roberto Ierusalimschy | 2014-12-26 | 1 | -3/+3 |
* | removed macro 'luai_numinvalidop' (main motivation removed, as folding | Roberto Ierusalimschy | 2014-12-26 | 2 | -15/+2 |
* | removed useless initializations | Roberto Ierusalimschy | 2014-12-26 | 2 | -4/+4 |
* | comments were wrong (not updated about several changes) | Roberto Ierusalimschy | 2014-12-20 | 1 | -6/+6 |
* | details in 'luaM_reallocvchar' | Roberto Ierusalimschy | 2014-12-19 | 2 | -5/+6 |
* | new macro 'luaM_reallocvchar' to allocate arrays of chars (avoids | Roberto Ierusalimschy | 2014-12-19 | 2 | -3/+9 |
* | new macro 'nvalue' (to convert an object to a float when we know | Roberto Ierusalimschy | 2014-12-19 | 3 | -10/+7 |
* | detail (in test for 'luai_numinvalidop', use a round float) | Roberto Ierusalimschy | 2014-12-19 | 1 | -2/+2 |
* | comment | Roberto Ierusalimschy | 2014-12-19 | 1 | -2/+2 |
* | old Visual Studio versions did not support 'noreturn' attribute | Roberto Ierusalimschy | 2014-12-19 | 1 | -2/+2 |
* | stupid bug in T.stacklevel (not in use by the tests) | Roberto Ierusalimschy | 2014-12-18 | 1 | -2/+2 |
* | Windows uses 'long long' (instead of '__int64') when present; again, | Roberto Ierusalimschy | 2014-12-16 | 1 | -15/+15 |
* | added macro LUA_USE_I64 for separate control of use of Windows-specific | Roberto Ierusalimschy | 2014-12-16 | 1 | -2/+3 |
* | traverse loaded modules (instead of globals) for a name for a function + | Roberto Ierusalimschy | 2014-12-14 | 1 | -5/+13 |
* | comments | Roberto Ierusalimschy | 2014-12-13 | 1 | -11/+11 |
* | in traceback names, give preference to 'name' over '_G.name' | Roberto Ierusalimschy | 2014-12-13 | 1 | -3/+4 |
* | reinsertion-control macro renamed: lconfig_h -> luaconf_h | Roberto Ierusalimschy | 2014-12-12 | 1 | -3/+3 |
* | correct computation for limit in 'getnum' | Roberto Ierusalimschy | 2014-12-11 | 1 | -3/+3 |
* | better limits for 'sting.rep' and 'string.packsize' | Roberto Ierusalimschy | 2014-12-11 | 1 | -12/+17 |
* | new specifiers in 'strftime' are defined in C99 (not Posix) | Roberto Ierusalimschy | 2014-12-10 | 1 | -3/+3 |
* | 'ipairs' needs an argument | Roberto Ierusalimschy | 2014-12-10 | 1 | -1/+2 |
* | macro 'LUA_C89_NUMBERS' makes a little easier to use C89 numerical types | Roberto Ierusalimschy | 2014-12-10 | 1 | -37/+25 |
* | new function 'string.packsize' | Roberto Ierusalimschy | 2014-12-10 | 1 | -1/+24 |
* | give preference to global names in tracebacks | Roberto Ierusalimschy | 2014-12-10 | 1 | -12/+10 |
* | new parameter for testC instruction 'pcall' (error handler) | Roberto Ierusalimschy | 2014-12-10 | 1 | -4/+4 |
* | error handler does not need to be a function (can be a callable | Roberto Ierusalimschy | 2014-12-10 | 1 | -2/+1 |
* | redefinition of LUAI_MAXSTACK to make stack-overflow tests run faster | Roberto Ierusalimschy | 2014-12-09 | 1 | -1/+6 |
* | no more 'preloadedlibs' when opening libraries (as it is dead code now) | Roberto Ierusalimschy | 2014-12-09 | 2 | -26/+12 |
* | handle case where function was called as a hook | Roberto Ierusalimschy | 2014-12-08 | 1 | -4/+7 |
* | In 'debug.gethook', does not query hook table (which may not exist) if | Roberto Ierusalimschy | 2014-12-08 | 1 | -6/+8 |
* | 'assert' checks that it has (at least) one parameter + 'assert' ensures | Roberto Ierusalimschy | 2014-12-08 | 1 | -4/+5 |
* | use 'namewhat' when building a traceback | Roberto Ierusalimschy | 2014-12-08 | 1 | -2/+2 |
* | avoid octal numerals | Roberto Ierusalimschy | 2014-12-08 | 1 | -2/+2 |
* | in test mode, debug library is not predefined (to allow testing | Roberto Ierusalimschy | 2014-12-06 | 2 | -3/+11 |
* | no more default size for option 'c' in pack/unpack | Roberto Ierusalimschy | 2014-12-04 | 1 | -2/+6 |
* | some functions from test module must be exported | Roberto Ierusalimschy | 2014-11-29 | 1 | -4/+5 |
* | casts ('(int)' -> 'cast_int') | Roberto Ierusalimschy | 2014-11-29 | 1 | -9/+9 |