summaryrefslogtreecommitdiff
path: root/lvm.c (unfollow)
Commit message (Expand)AuthorFilesLines
2010-09-13hexadecimal constants may be floating values tooRoberto Ierusalimschy1-6/+4
2010-09-07'loadin' should not check whether upvalue is called '_ENV',Roberto Ierusalimschy1-5/+3
2010-09-07'lua_[gs]etupvalue' may work even without debug informationRoberto Ierusalimschy1-2/+6
2010-09-07name "_ENV" configurable through 'luaconf.h'Roberto Ierusalimschy7-15/+23
2010-09-03new parameter 'majorinc' to control frequency of major collectionsRoberto Ierusalimschy6-13/+25
2010-08-23'loadin' should accept any value for the environment (not only tables) +Roberto Ierusalimschy1-3/+6
2010-08-23'pushclosure' -> 'codeclosure' (as there is another 'pushclosure' inRoberto Ierusalimschy1-8/+13
2010-08-04api checks to ensure that thread is OK when using lua_call/lua_pcallRoberto Ierusalimschy1-1/+3
2010-08-03use index 0 for header of list of free referencesRoberto Ierusalimschy1-7/+7
2010-08-02detail: registry._PRELOAD must be a table, no need to checkRoberto Ierusalimschy1-3/+1
2010-07-28'module'/'luaL_register' and associates are deprecatedRoberto Ierusalimschy6-14/+33
2010-07-26several new commentsRoberto Ierusalimschy1-27/+43
2010-07-25'lua_[gs]etenv' -> 'lua_[gs]etuservalue'Roberto Ierusalimschy4-17/+17
2010-07-25environment variables consulted by Lua may be version-specificRoberto Ierusalimschy2-16/+32
2010-07-25new macros LUA_VERSION_{MAJOR/MINOR/RELEASE}Roberto Ierusalimschy2-6/+12
2010-07-18using curly brackets to mark blocks of '#if/#else/#endif'sRoberto Ierusalimschy1-26/+26
2010-07-07new way to distinguish between indexing tables in registers andRoberto Ierusalimschy3-46/+41
2010-07-02better organization for fields in struct 'expdesc'Roberto Ierusalimschy4-62/+67
2010-07-02comand-line option '-l' creates global with given name afterRoberto Ierusalimschy1-9/+18
2010-07-02functions lua_tonumber/lua_tointeger replaced by lua_tonumberx/lua_tointegerxRoberto Ierusalimschy5-24/+37
2010-07-02new module policy: C modules do not create globals and do not registerRoberto Ierusalimschy14-55/+104
2010-06-30old (and complex) luaL_findtable now used only in compatibility codeRoberto Ierusalimschy4-39/+59
2010-06-30typo in commentsRoberto Ierusalimschy5-12/+12
2010-06-25macro 'key2tal' replaced by 'gkey' (as both were equal)Roberto Ierusalimschy4-15/+13
2010-06-21'getlocal' gets information about parameters of Lua functionsRoberto Ierusalimschy3-20/+37
2010-06-18no more support for old Mac OS systemsRoberto Ierusalimschy1-87/+3
2010-06-16'what' may be NULL in 'kname'Roberto Ierusalimschy1-2/+2
2010-06-13'ipair' is backRoberto Ierusalimschy1-12/+2
2010-06-13use ANSI versions of DLL functions in WindowsRoberto Ierusalimschy1-4/+4
2010-06-10'coroutine' library separated from 'baselib'Roberto Ierusalimschy6-153/+169
2010-06-10unused '#include' removedRoberto Ierusalimschy1-2/+1
2010-06-09back with #-comments for binary filesRoberto Ierusalimschy1-13/+30
2010-06-07better barrier for prototypesRoberto Ierusalimschy3-36/+30
2010-06-04Lua closures are cached for reuseRoberto Ierusalimschy5-36/+114
2010-06-04'luaF_newLclosure' gets prototype of new closure as argumentRoberto Ierusalimschy2-5/+4
2010-06-04better names for barrier macrosRoberto Ierusalimschy2-6/+6
2010-06-02bug: generational collection was not running collector! (must writeRoberto Ierusalimschy1-2/+3
2010-05-31factoring out common code in 'module' and 'luaL_openlib'Roberto Ierusalimschy3-29/+35
2010-05-31new macro MAXUPVAL (maximum number of upvalues per closure)Roberto Ierusalimschy3-7/+12
2010-05-28correct definition for 'lua_cpcall' (tested)Roberto Ierusalimschy1-2/+2
2010-05-27corrected compatibility macro 'lua_cpcall' (untested)Roberto Ierusalimschy1-4/+6
2010-05-24added class '%g' in patterns (for graphical characters)Roberto Ierusalimschy1-1/+2
2010-05-24GC should not run when stopped, even in hard testsRoberto Ierusalimschy1-2/+3
2010-05-20it is better to call open functions with lua_call to not messRoberto Ierusalimschy1-3/+3
2010-05-18more commentsRoberto Ierusalimschy1-9/+9
2010-05-18bug: loadfile of binary files read first character twiceRoberto Ierusalimschy1-1/+2
2010-05-17really stop collection during finalizersRoberto Ierusalimschy1-2/+2
2010-05-17lua_pushstring may reallocate the stack, making 'o' a danglingRoberto Ierusalimschy1-5/+6
2010-05-17detail (comment)Roberto Ierusalimschy1-2/+2
2010-05-15semicolons now represent the empty statementRoberto Ierusalimschy1-3/+5