| Commit message (Expand) | Author | Age | Files | Lines |
* | parser fully reentrant(!) | Roberto Ierusalimschy | 2003-08-27 | 1 | -9/+18 |
* | bug: userdata to be collected still counts into new GC threshold, | Roberto Ierusalimschy | 2003-07-29 | 1 | -8/+14 |
* | new way to control `pc' of running functions | Roberto Ierusalimschy | 2003-07-16 | 1 | -2/+1 |
* | bug: C functions also may have stacks larger than current top | Roberto Ierusalimschy | 2003-07-07 | 1 | -3/+2 |
* | (much) smarter way to clear weak tables | Roberto Ierusalimschy | 2003-05-16 | 1 | -57/+37 |
* | Lua does not need all those different types... | Roberto Ierusalimschy | 2003-04-28 | 1 | -2/+2 |
* | warnings from several compilers (mainly typecasts when lua_Number is float) | Roberto Ierusalimschy | 2003-04-03 | 1 | -2/+3 |
* | name changes to avoid name collision between macros and variables | Roberto Ierusalimschy | 2003-03-18 | 1 | -23/+23 |
* | different variables for number of upvalues and size of upvalue array | Roberto Ierusalimschy | 2003-02-11 | 1 | -3/+3 |
* | resist errors in finalizers during lua_close | Roberto Ierusalimschy | 2003-02-10 | 1 | -11/+5 |
* | new functions to manipulate upvales (get/setupvalue) | Roberto Ierusalimschy | 2002-12-19 | 1 | -3/+5 |
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
* | avoid names `str...' (may conflict with string.h) | Roberto Ierusalimschy | 2002-12-02 | 1 | -7/+6 |
* | warnings from Visual C++ | Roberto Ierusalimschy | 2002-11-25 | 1 | -2/+2 |
* | comments | Roberto Ierusalimschy | 2002-11-22 | 1 | -2/+2 |
* | new macro `condhardstacktests' to control hard stack tests | Roberto Ierusalimschy | 2002-11-21 | 1 | -1/+3 |
* | Lua functions must have a frame or a saved pc. | Roberto Ierusalimschy | 2002-11-21 | 1 | -1/+2 |
* | C functions cannot increase its top without filling the stack | Roberto Ierusalimschy | 2002-11-21 | 1 | -6/+8 |
* | new representation for hooks (to allow asynchronous calls to sethook) | Roberto Ierusalimschy | 2002-11-18 | 1 | -4/+4 |
* | back to `__mode' metafield to specify weakness | Roberto Ierusalimschy | 2002-11-14 | 1 | -12/+25 |
* | all objects with several children (tables, closures, stacks, prototypes) | Roberto Ierusalimschy | 2002-11-13 | 1 | -126/+162 |
* | avoid traversing extra elements when cleaning weak tables | Roberto Ierusalimschy | 2002-11-11 | 1 | -33/+40 |
* | new macros to distinguish different types of object moves (for future GC | Roberto Ierusalimschy | 2002-11-07 | 1 | -2/+2 |
* | threads now are real Lua objects, subject to garbage collection | Roberto Ierusalimschy | 2002-10-25 | 1 | -41/+48 |
* | only one instance of registry and default metatable per global state | Roberto Ierusalimschy | 2002-10-22 | 1 | -8/+12 |
* | use of different buffers for scanner and concatenation | Roberto Ierusalimschy | 2002-10-08 | 1 | -6/+4 |
* | avoid `reclearing' weak tables | Roberto Ierusalimschy | 2002-09-19 | 1 | -10/+13 |
* | avoid luaS_resize (which may need extra memory) during `main' activities | Roberto Ierusalimschy | 2002-09-05 | 1 | -7/+8 |
* | details | Roberto Ierusalimschy | 2002-09-02 | 1 | -11/+13 |
* | new structure for collectable objects, sharing a common header | Roberto Ierusalimschy | 2002-08-30 | 1 | -176/+103 |
* | names... | Roberto Ierusalimschy | 2002-08-16 | 1 | -24/+24 |
* | cleaning the stage for generational collection | Roberto Ierusalimschy | 2002-08-16 | 1 | -32/+30 |
* | new API for weak mode | Roberto Ierusalimschy | 2002-08-06 | 1 | -37/+26 |
* | new macros `ttis*' | Roberto Ierusalimschy | 2002-08-05 | 1 | -7/+7 |
* | new names for light userdata operations | Roberto Ierusalimschy | 2002-07-17 | 1 | -2/+2 |
* | new interface for debug hooks | Roberto Ierusalimschy | 2002-07-08 | 1 | -4/+4 |
* | strings are always `strong' in weaktables | Roberto Ierusalimschy | 2002-07-04 | 1 | -4/+5 |
* | weak keys are removed only after finalization | Roberto Ierusalimschy | 2002-07-01 | 1 | -10/+44 |
* | userdata are removed from weaktables before invoking their GC fallbacks | Roberto Ierusalimschy | 2002-06-25 | 1 | -3/+3 |
* | assertion may fail when closing a state | Roberto Ierusalimschy | 2002-06-24 | 1 | -3/+1 |
* | first implementation of independent global table per function | Roberto Ierusalimschy | 2002-06-20 | 1 | -9/+10 |
* | `global' tables (registry, etc.) stored in proper place, not in the stack | Roberto Ierusalimschy | 2002-05-08 | 1 | -2/+4 |
* | use of a common `dummynode' for all empty tables | Roberto Ierusalimschy | 2002-04-23 | 1 | -8/+7 |
* | support for `light' userdata + simpler support for `boxed' udata | Roberto Ierusalimschy | 2002-04-05 | 1 | -2/+3 |
* | details | Roberto Ierusalimschy | 2002-03-26 | 1 | -2/+4 |
* | don't need to mark the stacks twice ;-) | Roberto Ierusalimschy | 2002-03-20 | 1 | -7/+5 |
* | simpler solution for finalizing udata | Roberto Ierusalimschy | 2002-03-20 | 1 | -47/+54 |
* | using `ci->top' to control acceptable indices in C calls | Roberto Ierusalimschy | 2002-03-07 | 1 | -7/+9 |
* | configurable minimum size for the string table | Roberto Ierusalimschy | 2002-03-05 | 1 | -2/+2 |
* | small optimization | Roberto Ierusalimschy | 2002-03-04 | 1 | -9/+9 |