Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new 'table.pack' function | Roberto Ierusalimschy | 2009-12-07 | 1 | -1/+25 |
| | |||||
* | lua_objlen calls __len metamethod on tables (if present) | Roberto Ierusalimschy | 2009-12-07 | 1 | -6/+13 |
| | |||||
* | strings in C scripts may be delimited by quotes + new functionality to | Roberto Ierusalimschy | 2009-12-01 | 1 | -16/+76 |
| | | | | set C scripts as C hooks | ||||
* | details | Roberto Ierusalimschy | 2009-12-01 | 1 | -3/+7 |
| | |||||
* | continuations may be upvalues too | Roberto Ierusalimschy | 2009-11-27 | 1 | -4/+5 |
| | |||||
* | coroutines may have C bodies | Roberto Ierusalimschy | 2009-11-27 | 1 | -3/+2 |
| | |||||
* | extra api checks for number of returns of C functions and for lua_yield | Roberto Ierusalimschy | 2009-11-27 | 3 | -6/+10 |
| | |||||
* | update of file dependencies (gcc -MM) | Roberto Ierusalimschy | 2009-11-27 | 1 | -14/+15 |
| | |||||
* | 'table.maxn' deprecated | Roberto Ierusalimschy | 2009-11-26 | 2 | -6/+16 |
| | |||||
* | no more compatibility code for 'string.gfind' | Roberto Ierusalimschy | 2009-11-26 | 2 | -15/+3 |
| | |||||
* | a few new warnings | Roberto Ierusalimschy | 2009-11-26 | 1 | -0/+7 |
| | |||||
* | detail in 'currentpc' (only needs to work for Lua functions) | Roberto Ierusalimschy | 2009-11-26 | 1 | -8/+4 |
| | |||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 10 | -22/+22 |
| | |||||
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 9 | -79/+60 |
| | | | | but stack entry knows whether it was tail called | ||||
* | 'notail' -> 'noextrachars' ('notail' may confuse with tail calls) | Roberto Ierusalimschy | 2009-11-24 | 1 | -5/+5 |
| | |||||
* | new mark LUAMOD_API for all luaopen_* functions | Roberto Ierusalimschy | 2009-11-24 | 11 | -30/+32 |
| | |||||
* | 'os.exit' should close state only when second argument is true | Roberto Ierusalimschy | 2009-11-23 | 1 | -2/+2 |
| | |||||
* | GC may get stuck during a parser and avoids proper resizing of the | Roberto Ierusalimschy | 2009-11-23 | 1 | -2/+27 |
| | | | | string table, making its lists grow too much and degrading performance. | ||||
* | new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and | Roberto Ierusalimschy | 2009-11-19 | 10 | -27/+31 |
| | | | | definitions of non-static variables | ||||
* | 'luaV_arith' must be marked 'LUAI_FUNC' (as all non-static functions) | Roberto Ierusalimschy | 2009-11-19 | 1 | -3/+3 |
| | |||||
* | new macro 'isdummy' | Roberto Ierusalimschy | 2009-11-19 | 1 | -8/+10 |
| | |||||
* | small corrections for 'luaall.c' | Roberto Ierusalimschy | 2009-11-19 | 1 | -4/+4 |
| | |||||
* | comments | Roberto Ierusalimschy | 2009-11-19 | 1 | -4/+4 |
| | |||||
* | remove declaration of removed function | Roberto Ierusalimschy | 2009-11-19 | 1 | -2/+1 |
| | |||||
* | 'debug.joinupvalue' -> 'debug.upvaluejoin' | Roberto Ierusalimschy | 2009-11-18 | 1 | -3/+3 |
| | |||||
* | (huge) simplification of GC management | Roberto Ierusalimschy | 2009-11-18 | 4 | -110/+50 |
| | |||||
* | 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 | 3 | -13/+16 |
| | |||||
* | when doing hard memory tests, perform a full GC at every possible step | Roberto Ierusalimschy | 2009-11-17 | 2 | -3/+9 |
| | |||||
* | 'module' returns the new module (to be used with lexical environments) | Roberto Ierusalimschy | 2009-11-16 | 1 | -2/+2 |
| | |||||
* | functions 'getfenv' and 'setfenv' are deprecated | Roberto Ierusalimschy | 2009-11-16 | 2 | -4/+23 |
| | |||||
* | new function 'loadin' | Roberto Ierusalimschy | 2009-11-13 | 1 | -23/+61 |
| | |||||
* | renaming: 'lua_upvaladdr' -> 'lua_upvalueid', | Roberto Ierusalimschy | 2009-11-09 | 3 | -14/+14 |
| | | | | 'lua_upvaljoin' -> 'lua_upvaluejoin' | ||||
* | new option 'isrunning' for 'lua_gc' (and 'collectgarbage') | Roberto Ierusalimschy | 2009-11-09 | 3 | -9/+15 |
| | |||||
* | registry and global table may be changed through the API without a | Roberto Ierusalimschy | 2009-11-09 | 2 | -3/+7 |
| | | | | write barrier, so GC should visit them in the atomic phase. | ||||
* | several small changes to simplify changing TValue if needed | Roberto Ierusalimschy | 2009-11-06 | 1 | -19/+17 |
| | |||||
* | macro 'checkvalref' redefined as function (to avoid too long macros) | Roberto Ierusalimschy | 2009-11-06 | 1 | -3/+6 |
| | |||||
* | macro 'gkey' returns a "real" TValue* | Roberto Ierusalimschy | 2009-11-06 | 1 | -2/+2 |
| | |||||
* | new macro 'NILCONSTANT' to initialize nil constants | Roberto Ierusalimschy | 2009-11-06 | 2 | -6/+6 |
| | |||||
* | avoid using 'ttype' when there is an explicit test + macro 'checkdeadkey' | Roberto Ierusalimschy | 2009-11-06 | 1 | -5/+7 |
| | | | | to avoid repetitions | ||||
* | avoid using 'ttype' when there is an explicit test | Roberto Ierusalimschy | 2009-11-06 | 1 | -4/+3 |
| | |||||
* | better to enclose macros in 'if' bodies with brackets | Roberto Ierusalimschy | 2009-11-06 | 1 | -2/+3 |
| | |||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 4 | -37/+40 |
| | |||||
* | api functions to manipulate upvalues do not need to check their | Roberto Ierusalimschy | 2009-11-05 | 3 | -35/+24 |
| | | | | arguments (the caller must check them before calling) | ||||
* | new functions to identify and join upvalues | Roberto Ierusalimschy | 2009-11-05 | 3 | -3/+84 |
| | |||||
* | comment explaining OP_VARARG was wrong (and corresponding code was not | Roberto Ierusalimschy | 2009-10-28 | 2 | -5/+5 |
| | | | | very clear) | ||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 7 | -47/+27 |
| | | | | environment | ||||
* | 'ipairs' goes until length of array instead of stopping at the first nil | Roberto Ierusalimschy | 2009-10-23 | 1 | -2/+2 |
| | |||||
* | new hash for doubles based on frexp, to avoid low-level tricks | Roberto Ierusalimschy | 2009-10-23 | 2 | -12/+37 |
| | |||||
* | better documentation for constructor syntax | Roberto Ierusalimschy | 2009-10-14 | 1 | -26/+34 |
| |