| Commit message (Expand) | Author | Age | Files | Lines |
* | Improvements in the handling of signals | Roberto Ierusalimschy | 2020-05-22 | 1 | -5/+5 |
* | Clearer distinction between types and tags | Roberto Ierusalimschy | 2020-01-31 | 1 | -3/+3 |
* | '__call' metamethod can be any callable object | Roberto Ierusalimschy | 2019-06-25 | 1 | -14/+14 |
* | New function 'setCstacklimit' | Roberto Ierusalimschy | 2019-06-18 | 1 | -3/+4 |
* | Revamp around 'L->nCcalls' count | Roberto Ierusalimschy | 2019-06-12 | 1 | -7/+6 |
* | Details | Roberto Ierusalimschy | 2019-05-13 | 1 | -1/+1 |
* | Test for dead coroutine moved to 'lua_resume' | Roberto Ierusalimschy | 2019-05-09 | 1 | -0/+2 |
* | Coroutines do not unwind the stack in case of errors | Roberto Ierusalimschy | 2019-05-09 | 1 | -3/+1 |
* | LUAI_MAXCCALLS renamed LUAI_MAXCSTACK | Roberto Ierusalimschy | 2019-03-25 | 1 | -2/+2 |
* | No more to-be-closed functions | Roberto Ierusalimschy | 2019-01-04 | 1 | -0/+1 |
* | Changes in the control of C-stack overflow | Roberto Ierusalimschy | 2018-12-27 | 1 | -24/+16 |
* | New functions 'lua_resetthread' and 'coroutine.kill' | Roberto Ierusalimschy | 2018-12-13 | 1 | -0/+4 |
* | Details | Roberto Ierusalimschy | 2018-12-11 | 1 | -16/+13 |
* | Some bugs with stack reallocation by 'luaF_close' | Roberto Ierusalimschy | 2018-11-24 | 1 | -3/+6 |
* | To-be-closed variables in the C API | Roberto Ierusalimschy | 2018-10-25 | 1 | -13/+19 |
* | Complete implementation of to-be-closed variables | Roberto Ierusalimschy | 2018-10-22 | 1 | -3/+6 |
* | First "complete" implementation of to-be-closed variables | Roberto Ierusalimschy | 2018-10-17 | 1 | -7/+13 |
* | Towards "to closed" local variables | Roberto Ierusalimschy | 2018-10-08 | 1 | -2/+1 |
* | Added "cost" for the use of C stack by a coroutine invocation. | Roberto Ierusalimschy | 2018-09-11 | 1 | -2/+8 |
* | Bug: wrong 'nCcalls' when resuming a coroutine | Roberto Ierusalimschy | 2018-07-11 | 1 | -3/+6 |
* | new macros 'likely'/'unlikely' with hints for jump predictions | Roberto Ierusalimschy | 2018-05-30 | 1 | -9/+9 |
* | in 'luaD_poscall', there is no need to compute 'firstResult' when 'nres==0' | Roberto Ierusalimschy | 2018-05-22 | 1 | -39/+30 |
* | 'fTransfer' -> 'ftransfer' / 'nTransfer' -> 'ntransfer' | Roberto Ierusalimschy | 2018-03-16 | 1 | -8/+8 |
* | details (avoid using non-C89 '//' comment) | Roberto Ierusalimschy | 2018-03-07 | 1 | -2/+1 |
* | typo in comment | Roberto Ierusalimschy | 2018-03-05 | 1 | -2/+2 |
* | better names for macros for tags and types. | Roberto Ierusalimschy | 2018-02-26 | 1 | -2/+2 |
* | two new fields 'fTransfer'/'nTransfer' in 'lua_Debug' structure | Roberto Ierusalimschy | 2018-02-17 | 1 | -9/+22 |
* | in return hook, 'top' must be corrected only if smaller than 'ci->top'. | Roberto Ierusalimschy | 2018-02-17 | 1 | -2/+3 |
* | some simplifications/optimizations in returns from Lua functions | Roberto Ierusalimschy | 2018-02-15 | 1 | -8/+16 |
* | vararg back to '...' (but with another implementation) | Roberto Ierusalimschy | 2018-02-09 | 1 | -20/+17 |
* | details | Roberto Ierusalimschy | 2018-02-07 | 1 | -13/+16 |
* | new opcode 'PREPVARARG' | Roberto Ierusalimschy | 2018-02-07 | 1 | -14/+5 |
* | call hooks for Lua functions called by 'luaV_execute' | Roberto Ierusalimschy | 2018-02-06 | 1 | -16/+14 |
* | warnings in VS (implicit casts from ptrdiff_t to int) | Roberto Ierusalimschy | 2018-01-29 | 1 | -2/+2 |
* | bug in tailcall of vararg functions | Roberto Ierusalimschy | 2018-01-28 | 1 | -13/+16 |
* | calling a vararg function needs to check GC | Roberto Ierusalimschy | 2018-01-28 | 1 | -7/+7 |
* | 'luaD_tryfuncTM' can ensure it does not change the stack | Roberto Ierusalimschy | 2018-01-10 | 1 | -7/+4 |
* | by-one error when filling missing arguments in a tail call | Roberto Ierusalimschy | 2017-12-29 | 1 | -3/+3 |
* | when calling a hook, cannot decrease 'ci->top' (to preserve stack | Roberto Ierusalimschy | 2017-12-28 | 1 | -6/+6 |
* | when running Lua code, there is no need to keep 'L->top' "correct"; | Roberto Ierusalimschy | 2017-12-20 | 1 | -3/+6 |
* | new macro 'isLuacode' (to distinguish regular Lua code from | Roberto Ierusalimschy | 2017-12-19 | 1 | -3/+4 |
* | 'Proto->numparams' does not include vararg parameter | Roberto Ierusalimschy | 2017-12-15 | 1 | -3/+3 |
* | when shrinking stack, always shrinks the CI list. | Roberto Ierusalimschy | 2017-12-12 | 1 | -5/+2 |
* | 'luaD_growstack' cannot raise any errors when 'raiseerror' is | Roberto Ierusalimschy | 2017-12-11 | 1 | -14/+27 |
* | more freedom in handling memory-allocation errors (not all allocations | Roberto Ierusalimschy | 2017-12-08 | 1 | -19/+23 |
* | detail | Roberto Ierusalimschy | 2017-12-01 | 1 | -3/+3 |
* | 'luaV_execute' gets call info as extra argument (it is always | Roberto Ierusalimschy | 2017-11-29 | 1 | -6/+7 |
* | small simplifications in 'luaD_poscall' | Roberto Ierusalimschy | 2017-11-23 | 1 | -18/+18 |
* | no more 'stackless' implementation; 'luaV_execute' calls itself | Roberto Ierusalimschy | 2017-11-23 | 1 | -48/+18 |
* | more direct implementation for tail calls. | Roberto Ierusalimschy | 2017-11-21 | 1 | -10/+37 |