aboutsummaryrefslogtreecommitdiff
path: root/lua.h (unfollow)
Commit message (Expand)AuthorFilesLines
2008-07-03useless #define removed (pointed by lint)Roberto Ierusalimschy1-4/+1
2008-07-03useless #include removed (pointed by lint)Roberto Ierusalimschy1-2/+1
2008-07-03identation error (pointed by lint)Roberto Ierusalimschy1-2/+2
2008-06-26message from -v option goes to stdout, as it is not an error messageRoberto Ierusalimschy1-2/+2
2008-06-26simplification in the handling of finalizers: no more 'tmudata' list +Roberto Ierusalimschy5-100/+89
2008-06-26GC called after errors now are called after showing error message (toRoberto Ierusalimschy1-3/+3
2008-06-25added a comment about warnings for __attribute__(visibility) in someRoberto Ierusalimschy1-2/+6
2008-06-23bug: when closing the state, 'luaC_separateudata' might markRoberto Ierusalimschy1-5/+3
2008-06-23code reorganization (only changed comments and order of functions)Roberto Ierusalimschy1-154/+203
2008-06-23outdated commentRoberto Ierusalimschy1-2/+2
2008-06-23"test trick" seems more useful with pointers instead of integersRoberto Ierusalimschy2-5/+5
2008-06-13when error is 'bad self' original message probably makes no sense, soRoberto Ierusalimschy1-3/+2
2008-06-13removed static variable lua_state (not used)Roberto Ierusalimschy1-4/+1
2008-06-13by default, 'os.exit' closes current stateRoberto Ierusalimschy1-2/+6
2008-06-13'luaL_gsub' moved into 'testC' (all auxlib should be tested through 'testC')Roberto Ierusalimschy1-23/+7
2008-06-12'luaL_testudata' does not leave garbage on the stack in case of failureRoberto Ierusalimschy1-6/+6
2008-06-12'posrelat' avoids problems with -(-2^31)Roberto Ierusalimschy1-2/+2
2008-06-12extra options in 'testC' for newmetatable and testudataRoberto Ierusalimschy1-1/+8
2008-05-09updated years in some comments/stringsRoberto Ierusalimschy1-3/+3
2008-05-08patch for "blow stack" bugRoberto Ierusalimschy1-2/+30
2008-05-08added structure for local-variable information to allow extraRoberto Ierusalimschy2-7/+14
2008-04-14'string.find' cannot find things after subject's endRoberto Ierusalimschy1-2/+5
2008-04-07make default GC behavior a little more agressiveRoberto Ierusalimschy1-2/+2
2008-04-07two bugs: invalid boolean values in constant table + too deep recursionRoberto Ierusalimschy1-3/+6
2008-04-07'table.sort' detects invalid order function before calling itRoberto Ierusalimschy1-3/+3
2008-04-07avoid constant folding for -0 (to avoid it colapsing to 0)Roberto Ierusalimschy1-3/+3
2008-04-04patches for some bugsRoberto Ierusalimschy1-7/+94
2008-04-02bugs: precheck must use check (instead of assert) and ensures thatRoberto Ierusalimschy1-6/+5
2008-04-02SETLIST extra argument now is an "instruction" (OP_EXTRAARG)Roberto Ierusalimschy6-36/+68
2008-04-02corrected error message ("too many constants" -> "too many functions")Roberto Ierusalimschy1-2/+2
2008-04-01several bugs related to precompiled codeRoberto Ierusalimschy1-0/+53
2008-02-25'coroutine.running' should work for the main thread tooRoberto Ierusalimschy1-4/+4
2008-02-19userdata with finalizers are kept in a separated listRoberto Ierusalimschy7-147/+187
2008-02-19proxies must be created with a __gc field in their metatables to workRoberto Ierusalimschy1-2/+4
2008-02-15turn off optimizations when testingRoberto Ierusalimschy1-2/+2
2008-02-14bugs: lua_checkstack may have arithmetic overflow for large 'size' +Roberto Ierusalimschy1-0/+61
2008-02-14'table.concat' may get confused with too large limitsRoberto Ierusalimschy1-9/+15
2008-02-14bug: unpack with maximum indices may crash due to arithmetic overflowRoberto Ierusalimschy1-4/+6
2008-02-14bug: lua_checkstack may have arithmetic overflow for large 'size'Roberto Ierusalimschy1-5/+4
2008-02-12micro-optimization: avoid one API call in 'read_chars'Roberto Ierusalimschy1-10/+11
2008-02-12remove of useless test in 'read_chars' (if n == 0 then the resultingRoberto Ierusalimschy1-2/+2
2008-02-12corrected name of 'Patrick Donnelly'Roberto Ierusalimschy1-1/+1
2008-02-12added assertions checking maximum number of upvaluesRoberto Ierusalimschy1-2/+4
2008-02-11LUAI_MAXCSTACK must be smaller than -LUA_REGISTRYINDEX +Roberto Ierusalimschy1-1/+54
2008-02-11maximum C stack should reserve some values for pseudo-indicesRoberto Ierusalimschy1-7/+15
2008-02-11bug: pseudo-indices should be linked to maximum C stack sizeRoberto Ierusalimschy1-4/+4
2008-02-11bug: auxresume should reserve stack space for boolean resultRoberto Ierusalimschy1-2/+2
2008-02-11in 'testC', booleans should be represented by booean valuesRoberto Ierusalimschy1-11/+11
2008-02-11new instructions 'newtable' and 'checkstack' in 'testC'Roberto Ierusalimschy1-1/+8
2008-02-11more options for 'kinds' of Garbage Collection + more agressiveRoberto Ierusalimschy1-29/+26