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