Commit message (Expand) | Author | Files | Lines | |
---|---|---|---|---|
2002-04-04 | debug interface uses `method' to describe calls like `a:foo()' | Roberto Ierusalimschy | 2 | -5/+7 |
2002-04-02 | getmetatable doesn't push nil when there is no metatable | Roberto Ierusalimschy | 1 | -5/+3 |
2002-04-02 | details | Roberto Ierusalimschy | 6 | -15/+19 |
2002-04-02 | better support for new libraries | Roberto Ierusalimschy | 2 | -9/+31 |
2002-04-02 | `tostring' uses `__tostring' when available | Roberto Ierusalimschy | 1 | -16/+13 |
2002-04-02 | bug: end of block may not be end of stat | Roberto Ierusalimschy | 1 | -1/+2 |
2002-04-01 | details | Roberto Ierusalimschy | 1 | -3/+2 |
2002-03-27 | small bug if LUA_USERINIT leaves garbage on the stack | Roberto Ierusalimschy | 1 | -2/+3 |
2002-03-27 | when possible, library functions accept nil as none | Roberto Ierusalimschy | 5 | -13/+13 |
2002-03-27 | metatable always return some value | Roberto Ierusalimschy | 3 | -10/+23 |
2002-03-26 | simpler way to control stack overflow | Roberto Ierusalimschy | 4 | -44/+51 |
2002-03-26 | details | Roberto Ierusalimschy | 1 | -2/+4 |
2002-03-25 | small bug (L->ci->top may be larger than L->top...) | Roberto Ierusalimschy | 1 | -3/+4 |
2002-03-25 | simpler implementation for line information | Roberto Ierusalimschy | 15 | -175/+79 |
2002-03-22 | first implementation of proper tail call | Roberto Ierusalimschy | 2 | -14/+32 |
2002-03-21 | first implementation for tail call | Roberto Ierusalimschy | 3 | -4/+11 |
2002-03-21 | details | Roberto Ierusalimschy | 2 | -6/+5 |
2002-03-20 | don't need to mark the stacks twice ;-) | Roberto Ierusalimschy | 1 | -7/+5 |
2002-03-20 | simpler solution for finalizing udata | Roberto Ierusalimschy | 1 | -47/+54 |
2002-03-20 | reserve one more bit for GC | Roberto Ierusalimschy | 1 | -2/+2 |
2002-03-20 | standard libraries in packages | Roberto Ierusalimschy | 8 | -247/+287 |
2002-03-20 | some improvements in stack control | Roberto Ierusalimschy | 4 | -17/+22 |
2002-03-20 | improvements in stack control | Roberto Ierusalimschy | 1 | -7/+9 |
2002-03-19 | erroneous objects may not live in the stack | Roberto Ierusalimschy | 4 | -36/+61 |
2002-03-18 | new names for tag methods | Roberto Ierusalimschy | 1 | -6/+6 |
2002-03-18 | api.c only needs to check pushes when api_check is defined | Roberto Ierusalimschy | 1 | -2/+3 |
2002-03-18 | new macro to convert double->int | Roberto Ierusalimschy | 4 | -12/+20 |
2002-03-18 | configurable macros should live in llimits.h | Roberto Ierusalimschy | 2 | -17/+17 |
2002-03-18 | special treatment for 'global in nil' | Roberto Ierusalimschy | 2 | -22/+29 |
2002-03-15 | an error may call GC and find an incomplete `ci' | Roberto Ierusalimschy | 1 | -2/+2 |
2002-03-14 | small optimization when returning a single local value | Roberto Ierusalimschy | 1 | -7/+9 |
2002-03-14 | implementation of `global' statement | Roberto Ierusalimschy | 4 | -106/+211 |
2002-03-14 | comments | Roberto Ierusalimschy | 1 | -2/+2 |
2002-03-11 | first implementation of `gfind' | Roberto Ierusalimschy | 1 | -9/+53 |
2002-03-11 | avoid C identifiers beginning with '_' | Roberto Ierusalimschy | 7 | -31/+31 |
2002-03-08 | error message | Roberto Ierusalimschy | 1 | -2/+3 |
2002-03-08 | details | Roberto Ierusalimschy | 1 | -1/+2 |
2002-03-08 | cannot store `top' in local variables... | Roberto Ierusalimschy | 1 | -4/+3 |
2002-03-08 | generic for (with any number of control variables) | Roberto Ierusalimschy | 7 | -68/+98 |
2002-03-08 | implementation of long comments | Roberto Ierusalimschy | 1 | -17/+25 |
2002-03-07 | `lua_stackspace' replaced by `lua_checkstack' | Roberto Ierusalimschy | 3 | -9/+18 |
2002-03-07 | using `ci->top' to control acceptable indices in C calls | Roberto Ierusalimschy | 3 | -23/+32 |
2002-03-07 | details | Roberto Ierusalimschy | 2 | -8/+10 |
2002-03-05 | configurable minimum size for the string table | Roberto Ierusalimschy | 3 | -5/+10 |
2002-03-05 | lu_byte is enough for those fields (maxstack < 256) | Roberto Ierusalimschy | 3 | -11/+11 |
2002-03-04 | `inline' of tonumber | Roberto Ierusalimschy | 2 | -8/+10 |
2002-03-04 | small optimization | Roberto Ierusalimschy | 1 | -9/+9 |
2002-03-04 | `luaA_index' is a local macro now | Roberto Ierusalimschy | 3 | -20/+17 |
2002-03-04 | detail | Roberto Ierusalimschy | 1 | -2/+2 |
2002-03-04 | not all unfinished strings with "..." end in EOF | Roberto Ierusalimschy | 1 | -2/+3 |