aboutsummaryrefslogtreecommitdiff
path: root/lvm.h (unfollow)
Commit message (Expand)AuthorFilesLines
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
2008-02-11more options for 'kinds' of Garbage CollectionRoberto Ierusalimschy2-4/+9
2008-01-30'ceillog2' now is exported (other modules may need it)Roberto Ierusalimschy3-24/+25
2008-01-25comment (LUA_GLOBALSINDEX does not need write barrier in lua_replace)Roberto Ierusalimschy1-1/+2
2008-01-21debug.sethook/gethook may overflow the thread's stackRoberto Ierusalimschy1-0/+46
2008-01-21bug: debug.sethook/gethook may overflow thread's stackRoberto Ierusalimschy1-12/+10
2008-01-18avoid calling "tail return" hooks if the hook itself turns off the eventRoberto Ierusalimschy1-2/+2
2008-01-18small bug (see http://lua-users.org/lists/lua-l/2007-08/msg00350.html)Roberto Ierusalimschy1-5/+7
2008-01-18it seems useless trying to avoid this warning...Roberto Ierusalimschy1-2/+2
2008-01-17better definition for LUAI_MAXCSTACKRoberto Ierusalimschy1-2/+3
2008-01-17detailRoberto Ierusalimschy1-4/+3
2008-01-03luaL_tostring -> luaL_tolstring (more generic)Roberto Ierusalimschy3-10/+15
2008-01-02larger limit for MAXCSTACK (plus removing of some useless definitions)Roberto Ierusalimschy1-6/+2
2008-01-02detail ('name' of baselib is "_G")Roberto Ierusalimschy1-2/+2
2007-12-27option to use Sun compiler (on lhf account)Roberto Ierusalimschy1-5/+7
2007-12-27stand-alone interpreter shows incorrect error message when theRoberto Ierusalimschy1-0/+21
2007-12-19'lua_pushfstring' raises an error if called with invalid formatRoberto Ierusalimschy1-6/+5
2007-12-12new function 'package.searchpath'Roberto Ierusalimschy1-11/+29
2007-12-08detailsRoberto Ierusalimschy1-10/+9
2007-11-28BUG: lua_setfenv may crash if called over an invalid objectRoberto Ierusalimschy2-2/+23
2007-11-28detailsRoberto Ierusalimschy1-10/+11
2007-11-26BUG: table.remove removes last element of a table when givenRoberto Ierusalimschy2-2/+28
2007-11-26detailRoberto Ierusalimschy1-3/+2
2007-11-12use prefix in extern names, even those in test filesRoberto Ierusalimschy2-15/+15
2007-11-12detailRoberto Ierusalimschy1-2/+2
2007-11-09detailRoberto Ierusalimschy1-2/+3
2007-11-09avoid the use of "exotic" libc functionsRoberto Ierusalimschy1-28/+38
2007-10-31first implementation of ephemeronsRoberto Ierusalimschy3-51/+83