| Commit message (Expand) | Author | Age | Files | Lines |
* | code for conversion macros moved from luaconf to llimits + 'uint' | Roberto Ierusalimschy | 2010-11-03 | 1 | -3/+3 |
* | new type lua_Unsigned and corresponding projection/injection functions | Roberto Ierusalimschy | 2010-10-25 | 1 | -1/+28 |
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -5/+3 |
* | 'lua_[gs]etupvalue' may work even without debug information | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+6 |
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+2 |
* | new parameter 'majorinc' to control frequency of major collections | Roberto Ierusalimschy | 2010-09-03 | 1 | -1/+6 |
* | api checks to ensure that thread is OK when using lua_call/lua_pcall | Roberto Ierusalimschy | 2010-08-04 | 1 | -1/+3 |
* | 'lua_[gs]etenv' -> 'lua_[gs]etuservalue' | Roberto Ierusalimschy | 2010-07-25 | 1 | -3/+3 |
* | functions lua_tonumber/lua_tointeger replaced by lua_tonumberx/lua_tointegerx | Roberto Ierusalimschy | 2010-07-02 | 1 | -6/+13 |
* | better names for barrier macros | Roberto Ierusalimschy | 2010-06-04 | 1 | -4/+4 |
* | new macro MAXUPVAL (maximum number of upvalues per closure) | Roberto Ierusalimschy | 2010-05-31 | 1 | -3/+3 |
* | in 'absindex', do not need to call gettop (can inline it) | Roberto Ierusalimschy | 2010-05-14 | 1 | -2/+2 |
* | new API function 'lua_absindex' | Roberto Ierusalimschy | 2010-05-12 | 1 | -3/+13 |
* | stupid bug when calling 'luaC_changemode' (in function lua_gc) | Roberto Ierusalimschy | 2010-05-07 | 1 | -3/+6 |
* | new function 'luaC_changemode' | Roberto Ierusalimschy | 2010-05-05 | 1 | -9/+4 |
* | new way to control GC speed (keeping a 'debt' counter) | Roberto Ierusalimschy | 2010-04-29 | 1 | -7/+7 |
* | upvalue barriers for Lua functions must act on the upvalue itself, | Roberto Ierusalimschy | 2010-04-20 | 1 | -6/+10 |
* | in lua_gc/step, 'luaC_step' changes GCthreshold, so there was little | Roberto Ierusalimschy | 2010-04-19 | 1 | -4/+2 |
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -5/+5 |
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -27/+41 |
* | 'lua_pushstring' now uses 'luaS_new' | Roberto Ierusalimschy | 2010-04-05 | 1 | -3/+11 |
* | option to return GC to normal (incremental, non generational) mode | Roberto Ierusalimschy | 2010-04-02 | 1 | -1/+5 |
* | global table now is only kept in the registry | Roberto Ierusalimschy | 2010-03-29 | 1 | -5/+11 |
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -68/+29 |
* | major collections in generational mode | Roberto Ierusalimschy | 2010-03-25 | 1 | -9/+15 |
* | draft version of a generational mode for garbage collection. (Not well | Roberto Ierusalimschy | 2010-03-22 | 1 | -1/+7 |
* | first step towards _ENV: all chunks have an puvalues _ENV with the | Roberto Ierusalimschy | 2010-03-08 | 1 | -1/+7 |
* | field 'oldtop' renamed to 'extra', as it can be used for other | Roberto Ierusalimschy | 2010-02-09 | 1 | -2/+2 |
* | new function 'luaL_cpcall' | Roberto Ierusalimschy | 2010-01-21 | 1 | -10/+1 |
* | "no value" added to array luaT_typenames + occurrences of "userdata" | Roberto Ierusalimschy | 2010-01-13 | 1 | -2/+2 |
* | added casts from int to enumerations to follow C++ rules | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+3 |
* | removed parentheses around some function names in their definitions | Roberto Ierusalimschy | 2010-01-08 | 1 | -3/+3 |
* | new api_check that 'pcallk' cannot be called inside hooks | Roberto Ierusalimschy | 2010-01-04 | 1 | -1/+3 |
* | 'lua_cpcall' is deprecated | Roberto Ierusalimschy | 2009-12-22 | 1 | -2/+3 |
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -7/+6 |
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -14/+17 |
* | base-level C use global table as its environment | Roberto Ierusalimschy | 2009-12-15 | 1 | -13/+12 |
* | lua_checkstack does not raise memory errors (instead it signals them) | Roberto Ierusalimschy | 2009-12-08 | 1 | -5/+17 |
* | lua_objlen calls __len metamethod on tables (if present) | Roberto Ierusalimschy | 2009-12-07 | 1 | -6/+13 |
* | extra api checks for number of returns of C functions and for lua_yield | Roberto Ierusalimschy | 2009-11-27 | 1 | -4/+1 |
* | renaming: 'lua_upvaladdr' -> 'lua_upvalueid', | Roberto Ierusalimschy | 2009-11-09 | 1 | -3/+3 |
* | new option 'isrunning' for 'lua_gc' (and 'collectgarbage') | Roberto Ierusalimschy | 2009-11-09 | 1 | -1/+5 |
* | registry and global table may be changed through the API without a | Roberto Ierusalimschy | 2009-11-09 | 1 | -2/+3 |
* | better to enclose macros in 'if' bodies with brackets | Roberto Ierusalimschy | 2009-11-06 | 1 | -2/+3 |
* | api functions to manipulate upvalues do not need to check their | Roberto Ierusalimschy | 2009-11-05 | 1 | -19/+12 |
* | new functions to identify and join upvalues | Roberto Ierusalimschy | 2009-11-05 | 1 | -1/+45 |
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -10/+4 |
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -15/+29 |
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -2/+2 |
* | 'cpcall' reimplemented as a predefined value in the registry | Roberto Ierusalimschy | 2009-09-21 | 1 | -35/+9 |