summaryrefslogtreecommitdiff
path: root/lapi.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* configuration for NaN trick big-endian + macro 'luai_checknum' toRoberto Ierusalimschy2011-06-131-1/+3
* stricter control (using tag variants) over closure kinds (Lua x C)Roberto Ierusalimschy2011-06-021-56/+61
* more uniform names for 'equalobj'-related functionsRoberto Ierusalimschy2011-05-311-2/+2
* no need for two different implementations for equality (one raw andRoberto Ierusalimschy2011-05-311-2/+2
* lua_arith gets no fake operand for unary minusRoberto Ierusalimschy2011-04-051-7/+15
* full collection does not restart collector + avoid changing GCRoberto Ierusalimschy2010-12-291-7/+3
* change in the relationship between totalbytes and GCdebt - luaM_realloc_Roberto Ierusalimschy2010-12-201-4/+4
* better control for GC running or stoppedRoberto Ierusalimschy2010-12-201-6/+8
* finalizers (__gc) for tablesRoberto Ierusalimschy2010-11-261-2/+3
* code for conversion macros moved from luaconf to llimits + 'uint'Roberto Ierusalimschy2010-11-031-3/+3
* new type lua_Unsigned and corresponding projection/injection functionsRoberto Ierusalimschy2010-10-251-1/+28
* corrected warnings from different compilers (mostly casts and smallRoberto Ierusalimschy2010-10-251-5/+3
* 'lua_[gs]etupvalue' may work even without debug informationRoberto Ierusalimschy2010-09-071-2/+6
* name "_ENV" configurable through 'luaconf.h'Roberto Ierusalimschy2010-09-071-2/+2
* new parameter 'majorinc' to control frequency of major collectionsRoberto Ierusalimschy2010-09-031-1/+6
* api checks to ensure that thread is OK when using lua_call/lua_pcallRoberto Ierusalimschy2010-08-041-1/+3
* 'lua_[gs]etenv' -> 'lua_[gs]etuservalue'Roberto Ierusalimschy2010-07-251-3/+3
* functions lua_tonumber/lua_tointeger replaced by lua_tonumberx/lua_tointegerxRoberto Ierusalimschy2010-07-021-6/+13
* better names for barrier macrosRoberto Ierusalimschy2010-06-041-4/+4
* new macro MAXUPVAL (maximum number of upvalues per closure)Roberto Ierusalimschy2010-05-311-3/+3
* in 'absindex', do not need to call gettop (can inline it)Roberto Ierusalimschy2010-05-141-2/+2
* new API function 'lua_absindex'Roberto Ierusalimschy2010-05-121-3/+13
* stupid bug when calling 'luaC_changemode' (in function lua_gc)Roberto Ierusalimschy2010-05-071-3/+6
* new function 'luaC_changemode'Roberto Ierusalimschy2010-05-051-9/+4
* new way to control GC speed (keeping a 'debt' counter)Roberto Ierusalimschy2010-04-291-7/+7
* upvalue barriers for Lua functions must act on the upvalue itself,Roberto Ierusalimschy2010-04-201-6/+10
* in lua_gc/step, 'luaC_step' changes GCthreshold, so there was littleRoberto Ierusalimschy2010-04-191-4/+2
* "light C function" is a better name than "C-function pointer"Roberto Ierusalimschy2010-04-181-5/+5
* first implementation of light C functionsRoberto Ierusalimschy2010-04-141-27/+41
* 'lua_pushstring' now uses 'luaS_new'Roberto Ierusalimschy2010-04-051-3/+11
* option to return GC to normal (incremental, non generational) modeRoberto Ierusalimschy2010-04-021-1/+5
* global table now is only kept in the registryRoberto Ierusalimschy2010-03-291-5/+11
* no more fenvs!Roberto Ierusalimschy2010-03-261-68/+29
* major collections in generational modeRoberto Ierusalimschy2010-03-251-9/+15
* draft version of a generational mode for garbage collection. (Not wellRoberto Ierusalimschy2010-03-221-1/+7
* first step towards _ENV: all chunks have an puvalues _ENV with theRoberto Ierusalimschy2010-03-081-1/+7
* field 'oldtop' renamed to 'extra', as it can be used for otherRoberto Ierusalimschy2010-02-091-2/+2
* new function 'luaL_cpcall'Roberto Ierusalimschy2010-01-211-10/+1
* "no value" added to array luaT_typenames + occurrences of "userdata"Roberto Ierusalimschy2010-01-131-2/+2
* added casts from int to enumerations to follow C++ rulesRoberto Ierusalimschy2010-01-111-2/+3
* removed parentheses around some function names in their definitionsRoberto Ierusalimschy2010-01-081-3/+3
* new api_check that 'pcallk' cannot be called inside hooksRoberto Ierusalimschy2010-01-041-1/+3
* 'lua_cpcall' is deprecatedRoberto Ierusalimschy2009-12-221-2/+3
* no more pseudoindex LUA_GLOBALSINDEX; global table now accessibleRoberto Ierusalimschy2009-12-221-7/+6
* 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'Roberto Ierusalimschy2009-12-171-14/+17
* base-level C use global table as its environmentRoberto Ierusalimschy2009-12-151-13/+12
* lua_checkstack does not raise memory errors (instead it signals them)Roberto Ierusalimschy2009-12-081-5/+17
* lua_objlen calls __len metamethod on tables (if present)Roberto Ierusalimschy2009-12-071-6/+13
* extra api checks for number of returns of C functions and for lua_yieldRoberto Ierusalimschy2009-11-271-4/+1
* renaming: 'lua_upvaladdr' -> 'lua_upvalueid',Roberto Ierusalimschy2009-11-091-3/+3