| Commit message (Expand) | Author | Files | Lines |
2010-03-25 | major collections in generational mode | Roberto Ierusalimschy | 4 | -23/+39 |
2010-03-25 | 'mainthread' is not inserted in the 'allgc' list anymore, but swept | Roberto Ierusalimschy | 4 | -21/+18 |
2010-03-24 | generational mode no longer sweep old objects | Roberto Ierusalimschy | 2 | -19/+41 |
2010-03-24 | userdata with finalizers are kept in a separated list ('udgc'), instead | Roberto Ierusalimschy | 5 | -44/+48 |
2010-03-23 | BUG: emergency collector might resize 'strt' (string table) when | Roberto Ierusalimschy | 1 | -11/+27 |
2010-03-22 | draft version of a generational mode for garbage collection. (Not well | Roberto Ierusalimschy | 5 | -35/+70 |
2010-03-22 | detail (wrong comment about LUAI_GCPAUSE) | Roberto Ierusalimschy | 1 | -2/+2 |
2010-03-22 | 'lua_assert' not visible from libraries | Roberto Ierusalimschy | 1 | -3/+2 |
2010-03-19 | 'cpcall' renamed to 'ccall' as it does not do a protected call | Roberto Ierusalimschy | 3 | -10/+10 |
2010-03-19 | 'ipairs' is deprecated | Roberto Ierusalimschy | 1 | -1/+13 |
2010-03-19 | for compatibility only: 'module' changes the first upvalue of | Roberto Ierusalimschy | 1 | -4/+8 |
2010-03-17 | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 4 | -51/+69 |
2010-03-13 | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 5 | -12/+11 |
2010-03-13 | must include 'string.h' because a macro uses 'strlen' | Roberto Ierusalimschy | 1 | -1/+2 |
2010-03-13 | better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEX | Roberto Ierusalimschy | 4 | -23/+28 |
2010-03-12 | first version of _ENV; no more global variables | Roberto Ierusalimschy | 12 | -124/+52 |
2010-03-12 | small optimization in luaL_addlstring (avoid adding chars one by one) | Roberto Ierusalimschy | 1 | -3/+14 |
2010-03-08 | first step towards _ENV: all chunks have an puvalues _ENV with the | Roberto Ierusalimschy | 3 | -13/+33 |
2010-03-05 | when finding a 'name' for a function, handle the case when the function | Roberto Ierusalimschy | 1 | -2/+5 |
2010-03-04 | when searching for a variable name, look existing upvalues before | Roberto Ierusalimschy | 1 | -20/+32 |
2010-03-03 | just in case, better to flush error messages | Roberto Ierusalimschy | 1 | -2/+3 |
2010-03-03 | new option '*L' for io.read + options for io.lines | Roberto Ierusalimschy | 1 | -24/+48 |
2010-02-27 | avoid 'continue' unless necessary | Roberto Ierusalimschy | 2 | -59/+59 |
2010-02-27 | removed useless test (argv[i] cannot be NULL when i<argc) | Roberto Ierusalimschy | 1 | -2/+1 |
2010-02-26 | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 8 | -31/+89 |
2010-02-18 | detail: in loadfile read function, no need to return NULL on EOF; | Roberto Ierusalimschy | 1 | -2/+2 |
2010-02-18 | avoid using 'ungetc' in loadfile | Roberto Ierusalimschy | 1 | -7/+15 |
2010-02-18 | new macro 'luai_writestringerror' | Roberto Ierusalimschy | 4 | -18/+25 |
2010-02-11 | no need to flush either stderr or \n-terminated outputs | Roberto Ierusalimschy | 1 | -4/+1 |
2010-02-11 | use of 'conventional' names for shift and rotate operations + | Roberto Ierusalimschy | 1 | -7/+27 |
2010-02-11 | removed support for '#fist-line comment' on binary files (as binary | Roberto Ierusalimschy | 1 | -14/+2 |
2010-02-09 | better usage messages, showing entire offending argument | Roberto Ierusalimschy | 1 | -8/+11 |
2010-02-09 | when yielding, original 'func' value must be kept and restored so | Roberto Ierusalimschy | 1 | -7/+6 |
2010-02-09 | field 'oldtop' renamed to 'extra', as it can be used for other | Roberto Ierusalimschy | 2 | -4/+4 |
2010-02-05 | typo (thanks to Gavin) | Roberto Ierusalimschy | 1 | -2/+2 |
2010-01-21 | new function 'luaL_cpcall' | Roberto Ierusalimschy | 5 | -23/+25 |
2010-01-21 | typo in comment | Roberto Ierusalimschy | 1 | -2/+2 |
2010-01-21 | better messages for invalid options | Roberto Ierusalimschy | 1 | -8/+10 |
2010-01-15 | __unm metamethod gets nil as its 2nd parameter | Roberto Ierusalimschy | 1 | -1/+2 |
2010-01-13 | table.pack was locking last result, avoiding its collection | Roberto Ierusalimschy | 1 | -1/+3 |
2010-01-13 | HINSTANCE -> HMODULE (they are the same thing, but the MS documentation | Roberto Ierusalimschy | 1 | -4/+12 |
2010-01-13 | warnings that are not compatible with C++ separated from other warning | Roberto Ierusalimschy | 1 | -9/+12 |
2010-01-13 | "no value" added to array luaT_typenames + occurrences of "userdata" | Roberto Ierusalimschy | 5 | -23/+20 |
2010-01-13 | correct error message when yielding from outside a coroutine | Roberto Ierusalimschy | 1 | -3/+7 |
2010-01-13 | on 64-bit machines, an address may not fit into a 'long', so it | Roberto Ierusalimschy | 1 | -2/+2 |
2010-01-12 | missing standard defines | Roberto Ierusalimschy | 1 | -1/+4 |
2010-01-11 | 'searchpath' changes dots into directory separators | Roberto Ierusalimschy | 1 | -2/+2 |
2010-01-11 | added casts from int to enumerations to follow C++ rules | Roberto Ierusalimschy | 2 | -6/+7 |
2010-01-11 | removed useless initialization | Roberto Ierusalimschy | 1 | -2/+2 |
2010-01-11 | conversion from pointer to void to pointer to function seems more | Roberto Ierusalimschy | 1 | -2/+2 |