Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-01-11 | added casts from int to enumerations to follow C++ rules | Roberto Ierusalimschy | 2 | -6/+7 | |
2010-01-11 | removed useless initialization | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-01-11 | conversion from pointer to void to pointer to function seems more | Roberto Ierusalimschy | 1 | -2/+2 | |
"correct" if done through an integral type (because conversions between pointers and numbers are allowed, only "implementation defined"). | |||||
2010-01-11 | missing 'external' in variable declaration | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-01-11 | pathes corrected to 5.2 | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-01-11 | corrected copyright notice to 2010 | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-01-11 | include of 'windows.h' moved to where it is needed | Roberto Ierusalimschy | 2 | -3/+3 | |
2010-01-11 | Dynamic C functions should be created with the global table as their | Roberto Ierusalimschy | 1 | -2/+4 | |
initial environments | |||||
2010-01-11 | changed macro lua_number2int for Windows (added brackets; some recent | Roberto Ierusalimschy | 1 | -2/+3 | |
compilers complain about the old format) + added missing definition for 'lua_number2int' in Windows case. | |||||
2010-01-11 | "-"-trick in C packages now accept name-v13... | Roberto Ierusalimschy | 1 | -7/+14 | |
2010-01-11 | removed old prototype for 'luaI_openlib' (which does not exist anymore) | Roberto Ierusalimschy | 1 | -3/+1 | |
2010-01-08 | better may to force recompilation when makefile changes | Roberto Ierusalimschy | 1 | -47/+48 | |
2010-01-08 | 'setobj' must assing fields one by one, to allow trick of using | Roberto Ierusalimschy | 1 | -3/+5 | |
pad space in table keys | |||||
2010-01-08 | removed parentheses around some function names in their definitions | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-01-06 | some changes in compatibility macros: added LUA_COMPAT_ALL + compatibility | Roberto Ierusalimschy | 1 | -50/+43 | |
macros from lua.h and lauxlib.h moved to luaconf.h | |||||
2010-01-06 | compatibility code removed or moved to luaconf.h | Roberto Ierusalimschy | 1 | -7/+1 | |
2010-01-06 | compatibility code moved to luaconf.h | Roberto Ierusalimschy | 1 | -28/+4 | |
2010-01-06 | new debug info 'isvararg' and 'nparams' | Roberto Ierusalimschy | 3 | -8/+25 | |
2010-01-06 | no need to use two different defines (LUA_DL_DLOPEN and LUA_USE_DLOPEN) | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-01-06 | again changing macro to function to save a few bytes | Roberto Ierusalimschy | 1 | -5/+9 | |
2010-01-05 | macro 'luaY_checklimit' changed into a function (and renamed 'checklimit'). | Roberto Ierusalimschy | 1 | -10/+12 | |
It makes no sense to trade space for time in the parser. | |||||
2010-01-05 | field 'nups' in struct 'lua_Debug' changed from 'int' to 'unsigned | Roberto Ierusalimschy | 1 | -2/+2 | |
char' to save some space (even C functions cannot have more than maxchar upvalues). | |||||
2010-01-04 | new api_check that 'pcallk' cannot be called inside hooks | Roberto Ierusalimschy | 1 | -1/+3 | |
2010-01-04 | reorganization of switch in function 'match' (details) | Roberto Ierusalimschy | 1 | -18/+18 | |
2010-01-04 | comments + small details | Roberto Ierusalimschy | 1 | -16/+14 | |
2009-12-28 | 'unpack' moved to table library (and therefore "renamed" to | Roberto Ierusalimschy | 3 | -21/+33 | |
'table.unpack'. | |||||
2009-12-22 | 'lua_cpcall' is deprecated + other small changes in 'pmain' (comments | Roberto Ierusalimschy | 1 | -31/+28 | |
and reordering to check arguments before running any Lua code) | |||||
2009-12-22 | 'lua_cpcall' is deprecated | Roberto Ierusalimschy | 3 | -6/+14 | |
2009-12-22 | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 12 | -53/+63 | |
through registry | |||||
2009-12-18 | code for error message for 'setn' removed | Roberto Ierusalimschy | 1 | -7/+1 | |
2009-12-18 | missing parentheses around 'lua_version' + moving typdef's before | Roberto Ierusalimschy | 1 | -10/+10 | |
the extra include | |||||
2009-12-17 | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 11 | -42/+69 | |
2009-12-17 | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 8 | -52/+59 | |
when 'ptr' is NULL. | |||||
2009-12-17 | yet more options moved from luaconf.h into internal files | Roberto Ierusalimschy | 3 | -44/+48 | |
2009-12-17 | macro name change: LUA_INIT->LUA_INIT_VAR | Roberto Ierusalimschy | 1 | -5/+5 | |
2009-12-17 | macro name change: LUA_PATH->LUA_PATH_VAR, LUA_CPATH->LUA_CPATH_VAR, | Roberto Ierusalimschy | 1 | -22/+22 | |
LUA_PATHSEP->LUA_PATH_SEP, LUA_EXECDIR->LUA_EXEC_DIR | |||||
2009-12-17 | more options moved from luaconf.h into internal files | Roberto Ierusalimschy | 3 | -36/+53 | |
2009-12-17 | removed export of function only for coco | Roberto Ierusalimschy | 2 | -9/+6 | |
2009-12-17 | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 10 | -267/+215 | |
luaconf.h and into more internal files | |||||
2009-12-16 | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2 | -5/+5 | |
when 'ptr' is NULL. | |||||
2009-12-15 | base-level C use global table as its environment | Roberto Ierusalimschy | 1 | -13/+12 | |
2009-12-15 | detail ('lua_tolstring' instead of lua_objlen) | Roberto Ierusalimschy | 1 | -3/+4 | |
2009-12-14 | cleaner way to add extra space in a lua state. | Roberto Ierusalimschy | 3 | -19/+29 | |
2009-12-11 | better to keep GC state numbers sequential, to optimize switch in | Roberto Ierusalimschy | 3 | -18/+18 | |
'singlestep' | |||||
2009-12-11 | new function 'luaC_runtilstate' to advance GC until a "valid" state | Roberto Ierusalimschy | 4 | -21/+35 | |
2009-12-11 | avoid using deprecated macros lua_[gs]etglobal | Roberto Ierusalimschy | 4 | -13/+14 | |
2009-12-11 | macro 'ngcotouv' is the same as 'gco2uv', so it was removed | Roberto Ierusalimschy | 2 | -5/+4 | |
2009-12-10 | detail (comment) | Roberto Ierusalimschy | 1 | -3/+4 | |
2009-12-10 | several new features in testC to allow better testing of lua_resume | Roberto Ierusalimschy | 1 | -27/+62 | |
at the C API level | |||||
2009-12-10 | reordering of some functions + cleaner way to code lua_resume/resume + | Roberto Ierusalimschy | 1 | -55/+55 | |
small bug in lua_resume (in case of calling errors lua_resume should remove only new arguments from the stack and push error message). |