| Commit message (Expand) | Author | Age | Files | Lines |
* | new functions 'lua_arith' and 'lua_compare' | Roberto Ierusalimschy | 2009-06-17 | 1 | -6/+10 |
* | new API function 'lua_mainthread' | Roberto Ierusalimschy | 2009-06-15 | 1 | -1/+3 |
* | 'getline' renamed to 'getfuncline' (to avoid problems with POSIX) | Roberto Ierusalimschy | 2009-06-10 | 1 | -2/+2 |
* | no more L->base + ci->base only for Lua functions (C functions may use | Roberto Ierusalimschy | 2009-06-01 | 1 | -3/+3 |
* | several small improvements based on 'ci' being fixed now (including | Roberto Ierusalimschy | 2009-04-17 | 1 | -14/+12 |
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 1 | -11/+7 |
* | new function 'T.makeCfunc' (for later use) | Roberto Ierusalimschy | 2009-04-14 | 1 | -16/+38 |
* | new states have a reasonable panic function + | Roberto Ierusalimschy | 2009-03-03 | 1 | -4/+18 |
* | Lua now uses "homemade" lctype (instead of ctype.h from ANSI C) | Roberto Ierusalimschy | 2009-02-19 | 1 | -3/+3 |
* | using light userdata to represent "remote" states | Roberto Ierusalimschy | 2009-02-18 | 1 | -8/+14 |
* | detail (added 'UNUSED' to unused argument) | Roberto Ierusalimschy | 2008-10-28 | 1 | -1/+2 |
* | better control of call status through CallInfo | Roberto Ierusalimschy | 2008-08-26 | 1 | -2/+2 |
* | small bug: lua_resume returning LUA_YIELD is not an error | Roberto Ierusalimschy | 2008-08-13 | 1 | -2/+2 |
* | simplification in the handling of finalizers: no more 'tmudata' list + | Roberto Ierusalimschy | 2008-06-26 | 1 | -5/+9 |
* | "test trick" seems more useful with pointers instead of integers | Roberto Ierusalimschy | 2008-06-23 | 1 | -3/+3 |
* | removed static variable lua_state (not used) | Roberto Ierusalimschy | 2008-06-13 | 1 | -4/+1 |
* | 'luaL_gsub' moved into 'testC' (all auxlib should be tested through 'testC') | Roberto Ierusalimschy | 2008-06-13 | 1 | -23/+7 |
* | extra options in 'testC' for newmetatable and testudata | Roberto Ierusalimschy | 2008-06-12 | 1 | -1/+8 |
* | SETLIST extra argument now is an "instruction" (OP_EXTRAARG) | Roberto Ierusalimschy | 2008-04-02 | 1 | -1/+4 |
* | userdata with finalizers are kept in a separated list | Roberto Ierusalimschy | 2008-02-19 | 1 | -15/+17 |
* | in 'testC', booleans should be represented by booean values | Roberto Ierusalimschy | 2008-02-11 | 1 | -11/+11 |
* | new instructions 'newtable' and 'checkstack' in 'testC' | Roberto Ierusalimschy | 2008-02-11 | 1 | -1/+8 |
* | use prefix in extern names, even those in test files | Roberto Ierusalimschy | 2007-11-12 | 1 | -11/+11 |
* | clearing some old compatibility code | Roberto Ierusalimschy | 2007-06-21 | 1 | -10/+2 |
* | lua_pushstring/pushlstring return string | Roberto Ierusalimschy | 2007-04-17 | 1 | -2/+3 |
* | remove of a non-used test function | Roberto Ierusalimschy | 2007-04-10 | 1 | -7/+1 |
* | new constant LUA_OK | Roberto Ierusalimschy | 2006-10-10 | 1 | -4/+4 |
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -4/+4 |
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -6/+13 |
* | small simplifications | Roberto Ierusalimschy | 2006-06-05 | 1 | -15/+13 |
* | avoid unnecessary exports | Roberto Ierusalimschy | 2006-01-10 | 1 | -2/+2 |
* | details | Roberto Ierusalimschy | 2006-01-10 | 1 | -2/+2 |
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -4/+4 |
* | 'luaopen_package' was missing in new states | Roberto Ierusalimschy | 2005-10-06 | 1 | -1/+2 |
* | new function 'lua_setallocf' | Roberto Ierusalimschy | 2005-09-20 | 1 | -1/+2 |
* | avoid the use of global lock | Roberto Ierusalimschy | 2005-09-14 | 1 | -20/+6 |
* | detail | Roberto Ierusalimschy | 2005-08-26 | 1 | -3/+3 |
* | no more 'luaL_get/setfield' (replaced by more direct luaL_findtable) | Roberto Ierusalimschy | 2005-08-26 | 1 | -20/+1 |
* | luaL_openlib -> luaL_register, luaL_putchar -> luaL_addchar | Roberto Ierusalimschy | 2005-08-15 | 1 | -3/+3 |
* | details (alphabetical order for list of functions) | Roberto Ierusalimschy | 2005-07-12 | 1 | -28/+28 |
* | new test function for conversion from num to int | Roberto Ierusalimschy | 2005-07-11 | 1 | -1/+9 |
* | lua_objsize -> lua_objlen (more compatible with use of `lenĀ“ in other | Roberto Ierusalimschy | 2005-05-31 | 1 | -2/+2 |
* | better tests for correctness of `savedpc' | Roberto Ierusalimschy | 2005-05-03 | 1 | -2/+16 |
* | no more LUA_FIRSTINDEX | Roberto Ierusalimschy | 2005-03-28 | 1 | -2/+2 |
* | change `#ifdef' for `#if defined' | Roberto Ierusalimschy | 2005-03-23 | 1 | -3/+3 |
* | new "primitive" getn | Roberto Ierusalimschy | 2005-03-16 | 1 | -4/+6 |
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -43/+43 |
* | better control over GC collors of upvalues | Roberto Ierusalimschy | 2005-01-19 | 1 | -2/+15 |
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -9/+6 |
* | no more generational collector (and no more `noinc' mode) | Roberto Ierusalimschy | 2005-01-14 | 1 | -6/+5 |