summaryrefslogtreecommitdiff
path: root/lbaselib.c (unfollow)
Commit message (Expand)AuthorFilesLines
2010-01-11missing 'external' in variable declarationRoberto Ierusalimschy1-2/+2
2010-01-11pathes corrected to 5.2Roberto Ierusalimschy1-3/+3
2010-01-11corrected copyright notice to 2010Roberto Ierusalimschy1-3/+3
2010-01-11include of 'windows.h' moved to where it is neededRoberto Ierusalimschy2-3/+3
2010-01-11Dynamic C functions should be created with the global table as theirRoberto Ierusalimschy1-2/+4
2010-01-11changed macro lua_number2int for Windows (added brackets; some recentRoberto Ierusalimschy1-2/+3
2010-01-11"-"-trick in C packages now accept name-v13...Roberto Ierusalimschy1-7/+14
2010-01-11removed old prototype for 'luaI_openlib' (which does not exist anymore)Roberto Ierusalimschy1-3/+1
2010-01-08better may to force recompilation when makefile changesRoberto Ierusalimschy1-47/+48
2010-01-08'setobj' must assing fields one by one, to allow trick of usingRoberto Ierusalimschy1-3/+5
2010-01-08removed parentheses around some function names in their definitionsRoberto Ierusalimschy1-3/+3
2010-01-06some changes in compatibility macros: added LUA_COMPAT_ALL + compatibilityRoberto Ierusalimschy1-50/+43
2010-01-06compatibility code removed or moved to luaconf.hRoberto Ierusalimschy1-7/+1
2010-01-06compatibility code moved to luaconf.hRoberto Ierusalimschy1-28/+4
2010-01-06new debug info 'isvararg' and 'nparams'Roberto Ierusalimschy3-8/+25
2010-01-06no need to use two different defines (LUA_DL_DLOPEN and LUA_USE_DLOPEN)Roberto Ierusalimschy1-3/+3
2010-01-06again changing macro to function to save a few bytesRoberto Ierusalimschy1-5/+9
2010-01-05macro 'luaY_checklimit' changed into a function (and renamed 'checklimit').Roberto Ierusalimschy1-10/+12
2010-01-05field 'nups' in struct 'lua_Debug' changed from 'int' to 'unsignedRoberto Ierusalimschy1-2/+2
2010-01-04new api_check that 'pcallk' cannot be called inside hooksRoberto Ierusalimschy1-1/+3
2010-01-04reorganization of switch in function 'match' (details)Roberto Ierusalimschy1-18/+18
2010-01-04comments + small detailsRoberto Ierusalimschy1-16/+14
2009-12-28'unpack' moved to table library (and therefore "renamed" toRoberto Ierusalimschy3-21/+33
2009-12-22'lua_cpcall' is deprecated + other small changes in 'pmain' (commentsRoberto Ierusalimschy1-31/+28
2009-12-22'lua_cpcall' is deprecatedRoberto Ierusalimschy3-6/+14
2009-12-22no more pseudoindex LUA_GLOBALSINDEX; global table now accessibleRoberto Ierusalimschy12-53/+63
2009-12-18code for error message for 'setn' removedRoberto Ierusalimschy1-7/+1
2009-12-18missing parentheses around 'lua_version' + moving typdef's beforeRoberto Ierusalimschy1-10/+10
2009-12-17'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'Roberto Ierusalimschy11-42/+69
2009-12-17allocator function receives the tag of object being allocated in 'osize'Roberto Ierusalimschy8-52/+59
2009-12-17yet more options moved from luaconf.h into internal filesRoberto Ierusalimschy3-44/+48
2009-12-17macro name change: LUA_INIT->LUA_INIT_VARRoberto Ierusalimschy1-5/+5
2009-12-17macro name change: LUA_PATH->LUA_PATH_VAR, LUA_CPATH->LUA_CPATH_VAR,Roberto Ierusalimschy1-22/+22
2009-12-17more options moved from luaconf.h into internal filesRoberto Ierusalimschy3-36/+53
2009-12-17removed export of function only for cocoRoberto Ierusalimschy2-9/+6
2009-12-17several configuration options that do not change often moved out ofRoberto Ierusalimschy10-267/+215
2009-12-16allocator function receives the tag of object being allocated in 'osize'Roberto Ierusalimschy2-5/+5
2009-12-15base-level C use global table as its environmentRoberto Ierusalimschy1-13/+12
2009-12-15detail ('lua_tolstring' instead of lua_objlen)Roberto Ierusalimschy1-3/+4
2009-12-14cleaner way to add extra space in a lua state.Roberto Ierusalimschy3-19/+29
2009-12-11better to keep GC state numbers sequential, to optimize switch inRoberto Ierusalimschy3-18/+18
2009-12-11new function 'luaC_runtilstate' to advance GC until a "valid" stateRoberto Ierusalimschy4-21/+35
2009-12-11avoid using deprecated macros lua_[gs]etglobalRoberto Ierusalimschy4-13/+14
2009-12-11macro 'ngcotouv' is the same as 'gco2uv', so it was removedRoberto Ierusalimschy2-5/+4
2009-12-10detail (comment)Roberto Ierusalimschy1-3/+4
2009-12-10several new features in testC to allow better testing of lua_resumeRoberto Ierusalimschy1-27/+62
2009-12-10reordering of some functions + cleaner way to code lua_resume/resume +Roberto Ierusalimschy1-55/+55
2009-12-10detail (lua_resume should empty coroutine stack even if they do notRoberto Ierusalimschy1-1/+2
2009-12-08error messages from 'lua_resume' must be generated in protected mode,Roberto Ierusalimschy1-36/+43
2009-12-08lua_checkstack does not raise memory errors (instead it signals them)Roberto Ierusalimschy1-5/+17