| Commit message (Expand) | Author | Files | Lines |
2011-06-16 | 'os.execute' (and similars) should return 'exit' and code in case | Roberto Ierusalimschy | 1 | -7/+6 |
2011-06-16 | declarations should be present only when implementations are | Roberto Ierusalimschy | 1 | -1/+4 |
2011-06-15 | just in case, avoid side effects in 'ctype' macros | Roberto Ierusalimschy | 1 | -15/+22 |
2011-06-13 | configuration for NaN trick big-endian + macro 'luai_checknum' to | Roberto Ierusalimschy | 3 | -7/+50 |
2011-06-09 | avoid warnings with -Wstrict-overflow | Roberto Ierusalimschy | 2 | -8/+10 |
2011-06-09 | better way to test overflows with string indices | Roberto Ierusalimschy | 1 | -2/+2 |
2011-06-09 | macro 'NNMARK' (mark for non-number values using the NaN trick) | Roberto Ierusalimschy | 1 | -4/+6 |
2011-06-07 | first version with 'NANTRICK' (packing all Lua values inside a 'double') | Roberto Ierusalimschy | 1 | -15/+103 |
2011-06-02 | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 10 | -153/+176 |
2011-05-31 | yet another macro ('num_') | Roberto Ierusalimschy | 1 | -4/+5 |
2011-05-31 | more uniform names for 'equalobj'-related functions | Roberto Ierusalimschy | 5 | -15/+15 |
2011-05-31 | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 7 | -36/+27 |
2011-05-30 | code is simpler without 'goto' here | Roberto Ierusalimschy | 1 | -9/+3 |
2011-05-26 | yet another macro abstracting TValue representation | Roberto Ierusalimschy | 1 | -12/+13 |
2011-05-26 | new macro 'luai_writeline' to print newlines (and flush 'stdout') | Roberto Ierusalimschy | 3 | -9/+11 |
2011-05-25 | avoid use of 'ifdef/ifndef'; use 'defined' instead (simpler and | Roberto Ierusalimschy | 2 | -4/+4 |
2011-05-17 | changes by lhf (better control of chars x bytes) | Roberto Ierusalimschy | 3 | -38/+50 |
2011-05-06 | details | Roberto Ierusalimschy | 1 | -6/+8 |
2011-05-05 | new macro 'lua_longassert' that is equivalent to an assertion without | Roberto Ierusalimschy | 2 | -5/+7 |
2011-05-05 | macro 'checkconsistency' moved to this file, as it is used only | Roberto Ierusalimschy | 1 | -1/+5 |
2011-05-05 | break long assertion in two shorter ones | Roberto Ierusalimschy | 1 | -2/+3 |
2011-05-05 | avoid using expression as argument to unsafe macro 'l_isfalse' | Roberto Ierusalimschy | 1 | -2/+3 |
2011-05-05 | new macros abstracting TValue representation (to easy change to | Roberto Ierusalimschy | 1 | -43/+48 |
2011-05-04 | detail in assertion | Roberto Ierusalimschy | 1 | -2/+2 |
2011-05-03 | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 6 | -24/+29 |
2011-05-03 | removed TOKEN_LEN (useless) | Roberto Ierusalimschy | 2 | -5/+2 |
2011-05-02 | comment | Roberto Ierusalimschy | 2 | -4/+4 |
2011-04-29 | MacOS 'strtod' handles hexa formats too | Roberto Ierusalimschy | 1 | -1/+2 |
2011-04-28 | bug in OP_SELF when method name goes to a register | Roberto Ierusalimschy | 2 | -19/+39 |
2011-04-20 | Mac OS defines LUA_USE_AFORMAT and LUA_USE_LONGLONG by default | Roberto Ierusalimschy | 1 | -1/+3 |
2011-04-20 | 'LUA_USELONGLONG' -> 'LUA_USE_LONGLONG' | Roberto Ierusalimschy | 2 | -4/+4 |
2011-04-19 | 'LUA_USELONGLONG' on by default on Linux + LUA_USE_HEXAFLOAT renamed | Roberto Ierusalimschy | 1 | -3/+4 |
2011-04-19 | 'luaL_setfuncs' does not need to accept a NULL list. (If there is | Roberto Ierusalimschy | 1 | -3/+6 |
2011-04-19 | change in opcode OP_LOADNIL: B is used as a counter instead of a | Roberto Ierusalimschy | 5 | -18/+22 |
2011-04-18 | small bug (masked by wrong entry for OP_TEST in opcodes.c) | Roberto Ierusalimschy | 1 | -1/+5 |
2011-04-18 | added macro for code checking | Roberto Ierusalimschy | 1 | -1/+7 |
2011-04-18 | local function name only visible to debug info after being initialized | Roberto Ierusalimschy | 1 | -1/+6 |
2011-04-18 | detail ('luai_apicheck' should be used always through macro 'api_check') | Roberto Ierusalimschy | 1 | -2/+2 |
2011-04-18 | copyright updated to 2011 | Roberto Ierusalimschy | 1 | -3/+3 |
2011-04-12 | small corrections in description of OP_TEST and OP_LOADKX | Roberto Ierusalimschy | 1 | -3/+3 |
2011-04-08 | 'luaL_findtable' -> 'luaL_getsubtable' | Roberto Ierusalimschy | 6 | -18/+18 |
2011-04-07 | new instruction OP_LOADKX (to replace OP_LOADK with extra argument) | Roberto Ierusalimschy | 6 | -19/+27 |
2011-04-07 | cleaner scheme of bits for variant types (light C functions) and | Roberto Ierusalimschy | 1 | -33/+47 |
2011-04-05 | detail (should use macro 'ttisdeadkey') | Roberto Ierusalimschy | 1 | -2/+2 |
2011-04-05 | new macro 'ttisequal' | Roberto Ierusalimschy | 3 | -7/+6 |
2011-04-05 | 2nd operand for unary tag methods does not need to be 'nil' | Roberto Ierusalimschy | 1 | -3/+2 |
2011-04-05 | lua_arith gets no fake operand for unary minus | Roberto Ierusalimschy | 1 | -7/+15 |
2011-04-05 | all names used internally by macros end with '_' | Roberto Ierusalimschy | 1 | -28/+28 |
2011-03-18 | use of 'luaL_tolstring' for option '%s' in 'string.format' | Roberto Ierusalimschy | 1 | -3/+3 |
2011-03-14 | macro 'mark' renamed 'EOFMARK' ('mark' is too easy to confict, e.g. | Roberto Ierusalimschy | 1 | -4/+4 |