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