| Commit message (Expand) | Author | Age | Files | Lines |
* | cleaner API for coroutines | Roberto Ierusalimschy | 2004-09-15 | 1 | -2/+2 |
* | bug (due to new handling of varargs) | Roberto Ierusalimschy | 2004-08-12 | 1 | -2/+3 |
* | less conservative write barrier for tables | Roberto Ierusalimschy | 2004-08-10 | 1 | -3/+3 |
* | new way to code RK values | Roberto Ierusalimschy | 2004-06-29 | 1 | -3/+3 |
* | detail | Roberto Ierusalimschy | 2004-06-29 | 1 | -36/+36 |
* | BUG: string concatenation may cause arithmetic overflow, leading | Roberto Ierusalimschy | 2004-06-08 | 1 | -3/+4 |
* | new macro `lua_threadyield' + lock stuff in `luaconf.h' + details | Roberto Ierusalimschy | 2004-06-02 | 1 | -41/+39 |
* | new way to use `vararg' parameters (with `...') | Roberto Ierusalimschy | 2004-05-31 | 1 | -10/+27 |
* | small steps towards yields in iterators and tag methods | Roberto Ierusalimschy | 2004-05-14 | 1 | -55/+72 |
* | code parameterized by LUA_FIRSTINDEX (first index of an array) | Roberto Ierusalimschy | 2004-05-10 | 1 | -5/+6 |
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -10/+2 |
* | small optimization for {f()} | Roberto Ierusalimschy | 2004-03-26 | 1 | -3/+4 |
* | detail | Roberto Ierusalimschy | 2004-03-16 | 1 | -2/+1 |
* | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 2003-12-10 | 1 | -79/+79 |
* | First version of incremental GC | Roberto Ierusalimschy | 2003-12-09 | 1 | -6/+11 |
* | towards a "stackless" call of metamethods (?) | Roberto Ierusalimschy | 2003-10-27 | 1 | -18/+24 |
* | new way to control `pc' of running functions | Roberto Ierusalimschy | 2003-07-16 | 1 | -76/+78 |
* | correct handling when a thread turns on line hooks in another thread | Roberto Ierusalimschy | 2003-07-07 | 1 | -4/+6 |
* | better information about instruction behavior (use of arguments) | Roberto Ierusalimschy | 2003-05-14 | 1 | -6/+8 |
* | new semantics for "for" local variables | Roberto Ierusalimschy | 2003-05-13 | 1 | -25/+27 |
* | inlining of `luaV_gettable' were too complex (dirty) | Roberto Ierusalimschy | 2003-05-05 | 1 | -84/+39 |
* | warnings from several compilers (mainly typecasts when lua_Number is float) | Roberto Ierusalimschy | 2003-04-03 | 1 | -2/+2 |
* | clearance of debuging code (left by mistake) | Roberto Ierusalimschy | 2003-03-31 | 1 | -9/+1 |
* | ^ operator is defined by global `__pow' | Roberto Ierusalimschy | 2003-03-11 | 1 | -4/+3 |
* | comments | Roberto Ierusalimschy | 2003-03-07 | 1 | -2/+4 |
* | avoid including system headers after program headers | Roberto Ierusalimschy | 2003-03-06 | 1 | -2/+2 |
* | bug: GC metamethod calls could mess C/Lua stack syncronization | Roberto Ierusalimschy | 2003-02-28 | 1 | -6/+17 |
* | avoid the identifier `index' (clashes with BSD `index' function) | Roberto Ierusalimschy | 2003-02-27 | 1 | -5/+5 |
* | no-nonsense debug information about tail calls | Roberto Ierusalimschy | 2003-02-27 | 1 | -1/+2 |
* | small optimization for sizes of array constructors | Roberto Ierusalimschy | 2003-02-18 | 1 | -2/+2 |
* | different variables for number of upvalues and size of upvalue array | Roberto Ierusalimschy | 2003-02-11 | 1 | -2/+2 |
* | correct semantics for comparison metamethods (they are only valid | Roberto Ierusalimschy | 2003-01-27 | 1 | -15/+42 |
* | must move call results in the last iteration, too | Roberto Ierusalimschy | 2002-12-11 | 1 | -8/+9 |
* | bug: scope of generic for variables is not sound | Roberto Ierusalimschy | 2002-12-06 | 1 | -8/+17 |
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
* | simpler interface to hooks + use of `int' to count hooks | Roberto Ierusalimschy | 2002-11-25 | 1 | -2/+2 |
* | resets hook count even in case of errors | Roberto Ierusalimschy | 2002-11-25 | 1 | -2/+2 |
* | small bug: previous call may change `base' | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+3 |
* | easier way to keep `base' correct | Roberto Ierusalimschy | 2002-11-21 | 1 | -17/+18 |
* | keep L->ci->base in L->base for faster access | Roberto Ierusalimschy | 2002-11-21 | 1 | -5/+7 |
* | no problem keeping some dead meat while doing collection | Roberto Ierusalimschy | 2002-11-21 | 1 | -13/+4 |
* | small bugs (state could keep its CI_HASFRAME attribute after returning) | Roberto Ierusalimschy | 2002-11-19 | 1 | -5/+8 |
* | support for yield inside hooks | Roberto Ierusalimschy | 2002-11-18 | 1 | -4/+9 |
* | new representation for hooks (to allow asynchronous calls to sethook) | Roberto Ierusalimschy | 2002-11-18 | 1 | -2/+6 |
* | documentation for write barriers | Roberto Ierusalimschy | 2002-11-14 | 1 | -6/+6 |
* | new macros to distinguish different types of object moves (for future GC | Roberto Ierusalimschy | 2002-11-07 | 1 | -34/+34 |
* | new API for coroutines | Roberto Ierusalimschy | 2002-11-06 | 1 | -1/+2 |
* | threads now are real Lua objects, subject to garbage collection | Roberto Ierusalimschy | 2002-10-25 | 1 | -5/+6 |
* | use of different buffers for scanner and concatenation | Roberto Ierusalimschy | 2002-10-08 | 1 | -2/+2 |
* | unification of __index & __gettable (and __newindex & __settable) | Roberto Ierusalimschy | 2002-09-19 | 1 | -3/+3 |