| Commit message (Expand) | Author | Age | Files | Lines |
* | 'lua_load' has an extra argument 'mode' | Roberto Ierusalimschy | 2011-11-29 | 1 | -6/+23 |
* | new type 'l_noret' for function that do not return | Roberto Ierusalimschy | 2011-10-07 | 1 | -3/+3 |
* | comment | Roberto Ierusalimschy | 2011-09-12 | 1 | -2/+2 |
* | 'nCcalls' should be local to each thread, as each thread may have its | Roberto Ierusalimschy | 2011-08-23 | 1 | -14/+14 |
* | back to internal table for 'ctype', no more locale manipulation | Roberto Ierusalimschy | 2011-06-28 | 1 | -23/+4 |
* | added cast to void to calls to 'setlocale' (to easy redefining it as | Roberto Ierusalimschy | 2011-06-20 | 1 | -3/+3 |
* | parser must work with C locale, but external locale must be preserved | Roberto Ierusalimschy | 2011-06-18 | 1 | -4/+23 |
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -54/+54 |
* | code is simpler without 'goto' here | Roberto Ierusalimschy | 2011-05-30 | 1 | -9/+3 |
* | no need of lookahead in Zio | Roberto Ierusalimschy | 2011-02-23 | 1 | -3/+3 |
* | some reorganization of dynamic data structures used by the parser | Roberto Ierusalimschy | 2011-02-07 | 1 | -13/+10 |
* | first implementation of 'goto' | Roberto Ierusalimschy | 2011-02-04 | 1 | -2/+9 |
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 |
* | 'nresults' in CallInfo now refers to number of results that the current | Roberto Ierusalimschy | 2010-09-30 | 1 | -3/+4 |
* | 'luaF_newLclosure' gets prototype of new closure as argument | Roberto Ierusalimschy | 2010-06-04 | 1 | -3/+2 |
* | typos in comments | Roberto Ierusalimschy | 2010-05-05 | 1 | -2/+2 |
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -2/+2 |
* | macro LUA_USE_LONGJMP allows choosing longjmp when compiling Lua as | Roberto Ierusalimschy | 2010-04-18 | 1 | -2/+2 |
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -23/+31 |
* | keep memory-error message in the global state, so that its use | Roberto Ierusalimschy | 2010-04-08 | 1 | -3/+3 |
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -2/+2 |
* | when yielding, original 'func' value must be kept and restored so | Roberto Ierusalimschy | 2010-02-09 | 1 | -7/+6 |
* | correct error message when yielding from outside a coroutine | Roberto Ierusalimschy | 2010-01-13 | 1 | -3/+7 |
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -2/+2 |
* | removed export of function only for coco | Roberto Ierusalimschy | 2009-12-17 | 1 | -5/+5 |
* | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+33 |
* | reordering of some functions + cleaner way to code lua_resume/resume + | Roberto Ierusalimschy | 2009-12-10 | 1 | -55/+55 |
* | error messages from 'lua_resume' must be generated in protected mode, | Roberto Ierusalimschy | 2009-12-08 | 1 | -36/+43 |
* | extra api checks for number of returns of C functions and for lua_yield | Roberto Ierusalimschy | 2009-11-27 | 1 | -1/+5 |
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 1 | -28/+26 |
* | ensure that reader function cannot yield during parsing | Roberto Ierusalimschy | 2009-11-17 | 1 | -1/+3 |
* | parser/scanner keep GC running | Roberto Ierusalimschy | 2009-11-17 | 1 | -2/+1 |
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -2/+2 |
* | parser keeps list of active local variables in a single dynamic array, | Roberto Ierusalimschy | 2009-10-11 | 1 | -3/+7 |
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -3/+3 |
* | first implementation of 'lua_yieldk' (yield with continuation) | Roberto Ierusalimschy | 2009-09-14 | 1 | -5/+23 |
* | new way to control stack overflow, controling only total size of the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -18/+50 |
* | no more L->base + ci->base only for Lua functions (C functions may use | Roberto Ierusalimschy | 2009-06-01 | 1 | -16/+11 |
* | errors in finalizers are propagated with code LUA_ERRGCMM (ERRor in | Roberto Ierusalimschy | 2009-05-21 | 1 | -1/+2 |
* | new way to GC stacks: the entire stack must be correct all the times; | Roberto Ierusalimschy | 2009-04-28 | 1 | -12/+14 |
* | 'exit' changed to 'abort' in case of panic (+ some extra comments) | Roberto Ierusalimschy | 2009-04-26 | 1 | -9/+9 |
* | several small improvements based on 'ci' being fixed now (including | Roberto Ierusalimschy | 2009-04-17 | 1 | -27/+25 |
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 1 | -48/+21 |
* | 'nresults' is saved in CallInfo from the caller, not the called | Roberto Ierusalimschy | 2009-04-15 | 1 | -5/+4 |
* | first implementation of yieldable 'pcall' | Roberto Ierusalimschy | 2009-04-08 | 1 | -12/+53 |
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 1 | -21/+1 |
* | 'context' added to suspendable calls | Roberto Ierusalimschy | 2009-03-23 | 1 | -4/+3 |
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 1 | -62/+41 |
* | initial separation, in CallInfo, of what is relevant only to Lua | Roberto Ierusalimschy | 2009-03-04 | 1 | -4/+4 |
* | if thread has no error handling, try main thread handler before panicking | Roberto Ierusalimschy | 2009-03-03 | 1 | -7/+13 |