Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | "panic" cannot happen in lua.c, with lua_cpcall + | Roberto Ierusalimschy | 2003-01-29 | 1 | -16/+11 |
* | dump/undump of upvalue names | Roberto Ierusalimschy | 2003-01-27 | 3 | -16/+50 |
* | correct semantics for comparison metamethods (they are only valid | Roberto Ierusalimschy | 2003-01-27 | 1 | -15/+42 |
* | getn/setn in C moved to lauxlib | Roberto Ierusalimschy | 2003-01-27 | 3 | -61/+94 |
* | details | Roberto Ierusalimschy | 2003-01-27 | 1 | -6/+6 |
* | DEPRECATED (new manual uses an independent format instead of LaTeX) | Roberto Ierusalimschy | 2003-01-24 | 1 | -4539/+0 |
* | last changes before leaving Latex | Roberto Ierusalimschy | 2003-01-24 | 1 | -205/+241 |
* | detail | Roberto Ierusalimschy | 2003-01-23 | 1 | -6/+4 |
* | bug: luaD_protectedparser must protect its garbage collection too | Roberto Ierusalimschy | 2003-01-23 | 2 | -15/+20 |
* | starting translation to new format (@comand{...}). | Roberto Ierusalimschy | 2003-01-22 | 1 | -169/+178 |
* | corrections from Asko Kauppi | Roberto Ierusalimschy | 2003-01-21 | 1 | -17/+16 |
* | corrections/suggestions by Ed Ferguson | Roberto Ierusalimschy | 2003-01-20 | 1 | -139/+147 |
* | compatibility macros must be available by default | Roberto Ierusalimschy | 2003-01-17 | 1 | -3/+3 |
* | use the more modern _POSIX_C_SOURCE instead of older _POSIX_SOURCE | Roberto Ierusalimschy | 2003-01-17 | 2 | -3/+10 |
* | `openlib' functions return new module | Roberto Ierusalimschy | 2002-12-20 | 6 | -18/+27 |
* | bug: `resume' was checking the wrong value for stack overflow | Roberto Ierusalimschy | 2002-12-20 | 2 | -2/+12 |
* | details | Roberto Ierusalimschy | 2002-12-19 | 1 | -1/+3 |
* | new functions to manipulate upvales (get/setupvalue) | Roberto Ierusalimschy | 2002-12-19 | 9 | -21/+128 |
* | better explanation (+ example) for coroutinesv5.0-beta | Roberto Ierusalimschy | 2002-12-11 | 1 | -13/+72 |
* | OP_TFORLOOP uses extra stack space | Roberto Ierusalimschy | 2002-12-11 | 4 | -6/+8 |
* | must move call results in the last iteration, too | Roberto Ierusalimschy | 2002-12-11 | 1 | -8/+9 |
* | new options for debugging Lua (HARDSTACKTESTS & EXTERNMEMCHECK) | Roberto Ierusalimschy | 2002-12-06 | 1 | -5/+5 |
* | TFORLOOP makes a call that affects all values above it on the stack | Roberto Ierusalimschy | 2002-12-06 | 1 | -1/+2 |
* | bug: scope of generic for variables is not sound | Roberto Ierusalimschy | 2002-12-06 | 3 | -34/+48 |
* | "load*" creates chunk with same global table than caller | Roberto Ierusalimschy | 2002-12-06 | 1 | -5/+13 |
* | hook counts are integers now | Roberto Ierusalimschy | 2002-12-05 | 1 | -2/+2 |
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 28 | -28/+84 |
* | new function `lua_cpcall' | Roberto Ierusalimschy | 2002-12-04 | 5 | -41/+105 |
* | new facilities to test memory overflow in main.c | Roberto Ierusalimschy | 2002-12-04 | 2 | -2/+16 |
* | avoid non-raw accesses to globals when variable may not exist | Roberto Ierusalimschy | 2002-12-04 | 2 | -7/+12 |
* | new function `io.type' | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+15 |
* | small bug: `write' must return three values in case of errors | Roberto Ierusalimschy | 2002-12-04 | 1 | -3/+2 |
* | avoid names `str...' (may conflict with string.h) | Roberto Ierusalimschy | 2002-12-02 | 1 | -7/+6 |
* | details | Roberto Ierusalimschy | 2002-12-02 | 1 | -5/+5 |
* | details | Roberto Ierusalimschy | 2002-11-26 | 2 | -15/+7 |
* | detail | Roberto Ierusalimschy | 2002-11-26 | 1 | -3/+5 |
* | new `coroutine.status' function | Roberto Ierusalimschy | 2002-11-26 | 1 | -1/+18 |
* | new function `lua_version' | Roberto Ierusalimschy | 2002-11-25 | 2 | -2/+9 |
* | simpler interface to hooks + use of `int' to count hooks | Roberto Ierusalimschy | 2002-11-25 | 8 | -48/+41 |
* | renaming `stringdump' -> `string.dump' | Roberto Ierusalimschy | 2002-11-25 | 2 | -22/+21 |
* | `__tostring' for files + small bug (could do invalid read inside | Roberto Ierusalimschy | 2002-11-25 | 1 | -20/+35 |
* | warnings from Visual C++ | Roberto Ierusalimschy | 2002-11-25 | 3 | -7/+5 |
* | resets hook count even in case of errors | Roberto Ierusalimschy | 2002-11-25 | 1 | -2/+2 |
* | ULONG_MAX>>10 may not fit into an int | Roberto Ierusalimschy | 2002-11-25 | 1 | -3/+4 |
* | comments | Roberto Ierusalimschy | 2002-11-22 | 5 | -15/+15 |
* | separated control over C recursion level | Roberto Ierusalimschy | 2002-11-22 | 4 | -18/+40 |
* | make more clear "primitive" recursive definitions | Roberto Ierusalimschy | 2002-11-22 | 1 | -106/+100 |
* | avoid C stack overflow during parsing | Roberto Ierusalimschy | 2002-11-22 | 3 | -4/+22 |
* | detail | Roberto Ierusalimschy | 2002-11-22 | 2 | -4/+4 |
* | small bug: previous call may change `base' | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+3 |