aboutsummaryrefslogtreecommitdiff
path: root/lgc.c (unfollow)
Commit message (Expand)AuthorFilesLines
2010-10-25new type lua_Unsigned and corresponding projection/injection functionsRoberto Ierusalimschy6-22/+66
2010-10-25corrected warnings from different compilers (mostly casts and smallRoberto Ierusalimschy9-22/+21
2010-10-25version from lhfRoberto Ierusalimschy2-35/+20
2010-10-25bitlib renamed to 'bit32' + new function for arithmetic shiftRoberto Ierusalimschy3-11/+26
2010-10-25POS_A replaced by POS_Ax (which is more "precise")Roberto Ierusalimschy1-2/+2
2010-10-25commentRoberto Ierusalimschy1-2/+2
2010-10-18better error message for 'lua -e -i'Roberto Ierusalimschy1-5/+6
2010-10-13details in opcode listRoberto Ierusalimschy2-6/+7
2010-10-11'proto->source' may be NULL (if dump strips debug information)Roberto Ierusalimschy1-5/+11
2010-10-05'os.exit' acceps booleans as status (for EXIT_SUCESS and EXIT_FAILURE)Roberto Ierusalimschy1-2/+6
2010-10-01'luaL_loadlib' accepts Utf8 BOM in the beginning of filesRoberto Ierusalimschy1-13/+26
2010-09-30'nresults' in CallInfo now refers to number of results that the currentRoberto Ierusalimschy2-5/+6
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