| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | first implementation for type names | Roberto Ierusalimschy | 2001-01-25 | 1 | -26/+50 |
* | macros LUA_ENTRY/LUA_EXIT to control exclusive access to Lua core | Roberto Ierusalimschy | 2001-01-24 | 1 | -4/+15 |
* | thead-specific state separated from "global" state | Roberto Ierusalimschy | 2001-01-19 | 1 | -17/+17 |
* | all accesses to TObjects done through macros | Roberto Ierusalimschy | 2001-01-18 | 1 | -4/+3 |
* | `free' gets size of the block: complete control over memory use | Roberto Ierusalimschy | 2000-12-28 | 1 | -4/+2 |
* | explicit control of size for growing vectors | Roberto Ierusalimschy | 2000-12-26 | 1 | -10/+10 |
* | better control over extensions of char/short to int | Roberto Ierusalimschy | 2000-11-30 | 1 | -3/+3 |
* | lua_settagmethod does not return old tag method | Roberto Ierusalimschy | 2000-10-31 | 1 | -5/+2 |
* | new macro LUA_API | Roberto Ierusalimschy | 2000-10-20 | 1 | -5/+5 |
* | tag methods are always functions, so don't need to store a whole object | Roberto Ierusalimschy | 2000-10-05 | 1 | -27/+36 |
* | new definition for types-tags | Roberto Ierusalimschy | 2000-10-05 | 1 | -29/+20 |
* | details. | Roberto Ierusalimschy | 2000-10-03 | 1 | -5/+10 |
* | new API function `lua_type' + new type lua_Type | Roberto Ierusalimschy | 2000-10-02 | 1 | -3/+3 |
* | new way to count `nblocks' for GC (try to count bytes). | Roberto Ierusalimschy | 2000-09-29 | 1 | -1/+3 |
* | `lauxlib' is now part of the libraries (not used by core Lua) | Roberto Ierusalimschy | 2000-09-11 | 1 | -9/+17 |
* | API functions check stack overflow | Roberto Ierusalimschy | 2000-09-11 | 1 | -2/+3 |
* | new version for API | Roberto Ierusalimschy | 2000-09-05 | 1 | -7/+10 |
* | default now is multi-state | Roberto Ierusalimschy | 2000-08-09 | 1 | -3/+1 |
* | new algorithm for traversing in GC to avoid deep recursion calls | Roberto Ierusalimschy | 2000-08-07 | 1 | -14/+1 |
* | (much) better handling of memory alloction errors | Roberto Ierusalimschy | 2000-08-04 | 1 | -3/+3 |
* | `lua.h' is included before any other Lua header file | Roberto Ierusalimschy | 2000-06-12 | 1 | -1/+3 |
* | access to `values' in TObject always through macros | Roberto Ierusalimschy | 2000-06-08 | 1 | -3/+3 |
* | gc tag methods for udata are called in (reverse) tag order | Roberto Ierusalimschy | 2000-05-30 | 1 | -1/+2 |
* | code cleaner for 16 bits. | Roberto Ierusalimschy | 2000-05-24 | 1 | -3/+4 |
* | `luaT_validevent' is exported, because compatibility module for fallbacks | Roberto Ierusalimschy | 2000-03-30 | 1 | -2/+2 |
* | no more special cases for closures with 0 upvalues (performance is the same, | Roberto Ierusalimschy | 2000-03-29 | 1 | -12/+7 |
* | TAG_ARRAY -> TAG_TABLE | Roberto Ierusalimschy | 2000-03-27 | 1 | -6/+6 |
* | no more support for gc TM for tables | Roberto Ierusalimschy | 2000-03-27 | 1 | -15/+13 |
* | tags can be positive values | Roberto Ierusalimschy | 2000-03-20 | 1 | -30/+24 |
* | some name changes | Roberto Ierusalimschy | 2000-03-10 | 1 | -20/+20 |
* | many details (most by lhf). | Roberto Ierusalimschy | 2000-03-03 | 1 | -2/+2 |
* | all order operators use a single tag method (<) | Roberto Ierusalimschy | 2000-02-22 | 1 | -14/+26 |
* | new debug API (first version) | Roberto Ierusalimschy | 2000-01-19 | 1 | -3/+1 |
* | new ttypes to distinguish between C closures and Lua closures. | Roberto Ierusalimschy | 1999-12-23 | 1 | -14/+12 |
* | first implementation of multiple states (reentrant code). | Roberto Ierusalimschy | 1999-11-22 | 1 | -32/+34 |
* | simplified version of `gc' tag method (only for userdata now). | Roberto Ierusalimschy | 1999-10-04 | 1 | -2/+6 |
* | compatibility with old fallback system now provided by external module | Roberto Ierusalimschy | 1999-09-20 | 1 | -95/+2 |
* | "const" !!! | Roberto Ierusalimschy | 1999-08-16 | 1 | -10/+12 |
* | some C compilers cannot initialize a local struct | Roberto Ierusalimschy | 1999-05-21 | 1 | -2/+3 |
* | macros "growvector" and "reallocvector" more compact | Roberto Ierusalimschy | 1999-02-26 | 1 | -5/+3 |
* | details (from lhf) | Roberto Ierusalimschy | 1999-02-25 | 1 | -2/+2 |
* | new way to handle "growing" vectors | Roberto Ierusalimschy | 1999-02-25 | 1 | -6/+5 |
* | "errorim" now is _ERRORMESSAGE. | Roberto Ierusalimschy | 1999-02-04 | 1 | -4/+7 |
* | names... | Roberto Ierusalimschy | 1999-01-15 | 1 | -35/+21 |
* | details (comments) | Roberto Ierusalimschy | 1999-01-13 | 1 | -6/+4 |
* | better error message | Roberto Ierusalimschy | 1998-12-23 | 1 | -3/+5 |
* | new implementation for error handling: on error, function _ERRORMESSAGE | Roberto Ierusalimschy | 1998-08-21 | 1 | -3/+1 |
* | "findname" moved from lobject.c to lauxlib.c (so libraries may use it). | Roberto Ierusalimschy | 1998-06-18 | 1 | -4/+4 |
* | details | Roberto Ierusalimschy | 1998-03-11 | 1 | -2/+2 |
* | better use of "ASSERT". | Roberto Ierusalimschy | 1998-03-09 | 1 | -2/+2 |