Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-11-29 | some functions from test module must be exported | Roberto Ierusalimschy | 1 | -4/+5 | |
2014-11-29 | casts ('(int)' -> 'cast_int') | Roberto Ierusalimschy | 1 | -9/+9 | |
2014-11-29 | bug: lua_tounsignedx must cast to lua_Unsigned (of course...) | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-28 | next release won't be beta | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-27 | removed unneeded barrier ('from' must be white) | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-25 | details (comments) | Roberto Ierusalimschy | 1 | -6/+5 | |
2014-11-25 | clearer notation for "compare" instruction | Roberto Ierusalimschy | 1 | -3/+6 | |
2014-11-24 | bug ('#3' causes seg. fault in 5.3-beta) + comments + 'codearith' -> | Roberto Ierusalimschy | 1 | -13/+24 | |
'codeexpval' (confusion about what operations function accept was one of the reasons for the bug) | |||||
2014-11-24 | new test for macro 'luai_numinvalidop' | Roberto Ierusalimschy | 1 | -1/+5 | |
2014-11-21 | detail (buffer in 'LoadF' is related to files) | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-21 | avoid memory errors while a file is locked (when reading a line) | Roberto Ierusalimschy | 1 | -7/+16 | |
2014-11-21 | 'x//y' extended to floats | Roberto Ierusalimschy | 3 | -11/+10 | |
2014-11-21 | 'x//y' extended to floats + more comments about module and floor | Roberto Ierusalimschy | 2 | -24/+43 | |
division operations | |||||
2014-11-19 | simpler definition for 'luaV_tonumber_' | Roberto Ierusalimschy | 1 | -11/+8 | |
2014-11-19 | detail (LUAL_BUFFERSIZE has a larger variation among different | Roberto Ierusalimschy | 1 | -2/+2 | |
platforms) | |||||
2014-11-14 | allows calling luaL_checkstack with no message (in runC) | Roberto Ierusalimschy | 1 | -2/+5 | |
2014-11-14 | small bug (error of "chunk has too many lines" might use 't.token' | Roberto Ierusalimschy | 1 | -2/+3 | |
before reading the first token) | |||||
2014-11-12 | uses return value from luaL_getmetatable | Roberto Ierusalimschy | 1 | -3/+2 | |
2014-11-12 | uses return value from lua_getfield | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-11-12 | details (matching parameter names with manual) | Roberto Ierusalimschy | 1 | -10/+11 | |
2014-11-12 | details (match parameter names with lua.h and manual) | Roberto Ierusalimschy | 1 | -12/+12 | |
2014-11-11 | detail (use new returned value from 'lua_getglobal' ) | Roberto Ierusalimschy | 1 | -3/+2 | |
2014-11-11 | detail (to avoid a "to avoid warnings" return) | Roberto Ierusalimschy | 1 | -10/+8 | |
2014-11-11 | independent code for 'printstack' + test for panic function can | Roberto Ierusalimschy | 1 | -17/+21 | |
ran code there | |||||
2014-11-11 | no need to ensure any stack space for panic function + some changes | Roberto Ierusalimschy | 1 | -16/+12 | |
in 'tryfuncTM' (small simplification) | |||||
2014-11-11 | details | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-11-10 | details | Roberto Ierusalimschy | 1 | -7/+11 | |
2014-11-10 | bug: memory error in panic mode does not push error message on | Roberto Ierusalimschy | 1 | -2/+14 | |
the stack + stack check in tryfuncTM + comments | |||||
2014-11-10 | new function 'T.checkpanic' (to check panic errors) | Roberto Ierusalimschy | 1 | -1/+52 | |
2014-11-10 | detail (comment) | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-10 | luaL_loadbuffer replaced by luaL_loadstring (to test luaL_loadstring) | Roberto Ierusalimschy | 1 | -4/+11 | |
+ 'rawgetp'/'rawsetp' added to C interpreter | |||||
2014-11-10 | added missing cases for debug info about tag methods + | Roberto Ierusalimschy | 1 | -17/+20 | |
better error message for bitwise operators | |||||
2014-11-10 | better error message for bitwise operators (they are not arithmetic...) | Roberto Ierusalimschy | 2 | -5/+8 | |
2014-11-10 | using address instead of string for key for table 'CLIBS' in the | Roberto Ierusalimschy | 1 | -6/+10 | |
registry | |||||
2014-11-10 | using address key (light userdata) for hook table, instead of | Roberto Ierusalimschy | 1 | -12/+12 | |
string | |||||
2014-11-10 | removed unneeded test (result of b_str2int is already checked | Roberto Ierusalimschy | 1 | -3/+1 | |
against length) | |||||
2014-11-08 | details (error messages) | Roberto Ierusalimschy | 1 | -4/+3 | |
2014-11-08 | detail (line break) | Roberto Ierusalimschy | 1 | -3/+2 | |
2014-11-07 | when checking thread consistency, check its entire stack (always | Roberto Ierusalimschy | 1 | -4/+4 | |
the entire stack must have valid values) | |||||
2014-11-07 | cleaner test for overflow for range of 'math.random' | Roberto Ierusalimschy | 1 | -3/+3 | |
2014-11-05 | detail | Roberto Ierusalimschy | 1 | -2/+2 | |
2014-11-05 | more direct way to fill sign-extension extra bytes when packing | Roberto Ierusalimschy | 1 | -13/+29 | |
integers with sizes larger than lua_Integer + added comments | |||||
2014-11-05 | removed repeated flags (-Wall/-Wdisabled-optimization) + removed flag | Roberto Ierusalimschy | 1 | -73/+77 | |
-Wcast-align (Lua does some unconventional casts) + added flag -std=c99 + added file lprefix.h in dependency lists | |||||
2014-11-04 | no need to cast '*s' to unsigned char when we know it is a digit + | Roberto Ierusalimschy | 1 | -4/+4 | |
no need to call 'luaO_hexavalue' for decimal digits | |||||
2014-11-04 | added macro for configuring padding value in 'string.pack' | Roberto Ierusalimschy | 1 | -6/+12 | |
2014-11-03 | macro to change method of conversion from float to integer (make it | Roberto Ierusalimschy | 1 | -6/+15 | |
use floor intead of requiring an exact integral value) |