| Commit message (Expand) | Author | Age | Files | Lines |
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -6/+10 |
* | detail | Roberto Ierusalimschy | 2005-01-10 | 1 | -2/+2 |
* | macros for all arithmetic operations over lua_Numbers | Roberto Ierusalimschy | 2005-01-10 | 1 | -18/+18 |
* | a^b calls `pow´ (from math.h) directly | Roberto Ierusalimschy | 2005-01-07 | 1 | -10/+9 |
* | change in hash algorithm so that it does not need empty slot | Roberto Ierusalimschy | 2005-01-05 | 1 | -2/+2 |
* | cleaner interface to `ltable' | Roberto Ierusalimschy | 2005-01-04 | 1 | -4/+4 |
* | static names do not need `luaX_' prefix | Roberto Ierusalimschy | 2004-12-03 | 1 | -6/+6 |
* | better implementation for `floating-point bytes' | Roberto Ierusalimschy | 2004-11-01 | 1 | -2/+2 |
* | more secure way to compute final string length | Roberto Ierusalimschy | 2004-10-28 | 1 | -5/+4 |
* | small optimization for boolean constants + new format for SETLIST opcode | Roberto Ierusalimschy | 2004-10-04 | 1 | -10/+8 |
* | 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 |