Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-07-02 | better organization for fields in struct 'expdesc' | Roberto Ierusalimschy | 4 | -62/+67 | |
2010-07-02 | comand-line option '-l' creates global with given name after | Roberto Ierusalimschy | 1 | -9/+18 | |
requiring module | |||||
2010-07-02 | functions lua_tonumber/lua_tointeger replaced by lua_tonumberx/lua_tointegerx | Roberto Ierusalimschy | 5 | -24/+37 | |
that have an extra out parameter with conversion status | |||||
2010-07-02 | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 14 | -55/+104 | |
themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated. | |||||
2010-06-30 | old (and complex) luaL_findtable now used only in compatibility code | Roberto Ierusalimschy | 4 | -39/+59 | |
inside lauxlib.c | |||||
2010-06-30 | typo in comments | Roberto Ierusalimschy | 5 | -12/+12 | |
2010-06-25 | macro 'key2tal' replaced by 'gkey' (as both were equal) | Roberto Ierusalimschy | 4 | -15/+13 | |
2010-06-21 | 'getlocal' gets information about parameters of Lua functions | Roberto Ierusalimschy | 3 | -20/+37 | |
2010-06-18 | no more support for old Mac OS systems | Roberto Ierusalimschy | 1 | -87/+3 | |
2010-06-16 | 'what' may be NULL in 'kname' | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-06-13 | 'ipair' is back | Roberto Ierusalimschy | 1 | -12/+2 | |
2010-06-13 | use ANSI versions of DLL functions in Windows | Roberto Ierusalimschy | 1 | -4/+4 | |
2010-06-10 | 'coroutine' library separated from 'baselib' | Roberto Ierusalimschy | 6 | -153/+169 | |
2010-06-10 | unused '#include' removed | Roberto Ierusalimschy | 1 | -2/+1 | |
2010-06-09 | back with #-comments for binary files | Roberto Ierusalimschy | 1 | -13/+30 | |
2010-06-07 | better barrier for prototypes | Roberto Ierusalimschy | 3 | -36/+30 | |
2010-06-04 | Lua closures are cached for reuse | Roberto Ierusalimschy | 5 | -36/+114 | |
2010-06-04 | 'luaF_newLclosure' gets prototype of new closure as argument | Roberto Ierusalimschy | 2 | -5/+4 | |
2010-06-04 | better names for barrier macros | Roberto Ierusalimschy | 2 | -6/+6 | |
2010-06-02 | bug: generational collection was not running collector! (must write | Roberto Ierusalimschy | 1 | -2/+3 | |
a test for this...) | |||||
2010-05-31 | factoring out common code in 'module' and 'luaL_openlib' | Roberto Ierusalimschy | 3 | -29/+35 | |
2010-05-31 | new macro MAXUPVAL (maximum number of upvalues per closure) | Roberto Ierusalimschy | 3 | -7/+12 | |
2010-05-28 | correct definition for 'lua_cpcall' (tested) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-05-27 | corrected compatibility macro 'lua_cpcall' (untested) | Roberto Ierusalimschy | 1 | -4/+6 | |
2010-05-24 | added class '%g' in patterns (for graphical characters) | Roberto Ierusalimschy | 1 | -1/+2 | |
2010-05-24 | GC should not run when stopped, even in hard tests | Roberto Ierusalimschy | 1 | -2/+3 | |
2010-05-20 | it is better to call open functions with lua_call to not mess | Roberto Ierusalimschy | 1 | -3/+3 | |
the caller stack | |||||
2010-05-18 | more comments | Roberto Ierusalimschy | 1 | -9/+9 | |
2010-05-18 | bug: loadfile of binary files read first character twice | Roberto Ierusalimschy | 1 | -1/+2 | |
2010-05-17 | really stop collection during finalizers | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-05-17 | lua_pushstring may reallocate the stack, making 'o' a dangling | Roberto Ierusalimschy | 1 | -5/+6 | |
pointer | |||||
2010-05-17 | detail (comment) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-05-15 | semicolons now represent the empty statement | Roberto Ierusalimschy | 1 | -3/+5 | |
2010-05-14 | patches for last two bugs (string.format and io.read) | Roberto Ierusalimschy | 1 | -5/+42 | |
2010-05-14 | updated depenency lists + eliminated duplication of definitions | Roberto Ierusalimschy | 1 | -12/+9 | |
for MYCFLAGS, MYLDFLAGS, and MYLIBS. | |||||
2010-05-14 | comments | Roberto Ierusalimschy | 1 | -6/+6 | |
2010-05-14 | new "instruction" 'absindex' | Roberto Ierusalimschy | 1 | -1/+4 | |
2010-05-14 | in 'absindex', do not need to call gettop (can inline it) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-05-13 | one more macro (mvdispatch) to easy experiments with alternative | Roberto Ierusalimschy | 1 | -2/+3 | |
dispatch methods | |||||
2010-05-13 | detail (breaking a long line) | Roberto Ierusalimschy | 1 | -4/+5 | |
2010-05-12 | use of macro ('vmcase') to format all cases in main switch of | Roberto Ierusalimschy | 1 | -121/+83 | |
'luaV_execute' (to facilitate experiences with direct threading) | |||||
2010-05-12 | small changes in 'luaV_execute' to make cases more regularly formatted | Roberto Ierusalimschy | 1 | -8/+7 | |
2010-05-12 | added comments to '#else' and '#endif' in long conditionals | Roberto Ierusalimschy | 1 | -13/+14 | |
2010-05-12 | new API function 'lua_absindex' | Roberto Ierusalimschy | 3 | -13/+19 | |
2010-05-11 | avoid "strong" cast | Roberto Ierusalimschy | 1 | -2/+3 | |
2010-05-11 | wrong type being assigned (not detected because of obj2gco macro) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-05-10 | udata in 'tobefnz' list be have old bit on (it will be cleared | Roberto Ierusalimschy | 1 | -2/+1 | |
when udata is moved to 'allgc' list) | |||||
2010-05-10 | corrected some places where an old object could end up in front | Roberto Ierusalimschy | 4 | -10/+15 | |
of a new one + minimal documentation about this problem | |||||
2010-05-10 | new macro 'resetoldbit' | Roberto Ierusalimschy | 2 | -7/+9 | |
2010-05-10 | macros 'lua_number2int' and 'lua_number2uint' for Visual Studio | Roberto Ierusalimschy | 1 | -11/+12 | |
corrected and tested |