| Commit message (Expand) | Author | Age | Files | Lines |
* | cleaner scheme of bits for variant types (light C functions) and | Roberto Ierusalimschy | 2011-04-07 | 1 | -33/+47 |
* | detail (should use macro 'ttisdeadkey') | Roberto Ierusalimschy | 2011-04-05 | 1 | -2/+2 |
* | new macro 'ttisequal' | Roberto Ierusalimschy | 2011-04-05 | 3 | -7/+6 |
* | 2nd operand for unary tag methods does not need to be 'nil' | Roberto Ierusalimschy | 2011-04-05 | 1 | -3/+2 |
* | lua_arith gets no fake operand for unary minus | Roberto Ierusalimschy | 2011-04-05 | 1 | -7/+15 |
* | all names used internally by macros end with '_' | Roberto Ierusalimschy | 2011-04-05 | 1 | -28/+28 |
* | use of 'luaL_tolstring' for option '%s' in 'string.format' | Roberto Ierusalimschy | 2011-03-18 | 1 | -3/+3 |
* | macro 'mark' renamed 'EOFMARK' ('mark' is too easy to confict, e.g. | Roberto Ierusalimschy | 2011-03-14 | 1 | -4/+4 |
* | returns for file-related functions and process-related functions | Roberto Ierusalimschy | 2011-03-03 | 4 | -82/+85 |
* | loaders receive an extra argument returned by the searcher | Roberto Ierusalimschy | 2011-03-01 | 1 | -23/+32 |
* | small problems with 'luaone.c' | Roberto Ierusalimschy | 2011-02-28 | 5 | -11/+16 |
* | no need of lookahead in Zio | Roberto Ierusalimschy | 2011-02-23 | 8 | -41/+29 |
* | correct interpretation of return value from pclose | Roberto Ierusalimschy | 2011-02-21 | 1 | -28/+34 |
* | small bug: may call reader function again after it returned end | Roberto Ierusalimschy | 2011-02-17 | 2 | -4/+10 |
* | error for repeated label + jumps allowed to labels followed by | Roberto Ierusalimschy | 2011-02-14 | 1 | -24/+34 |
* | 'break' does not need to be last statement in a block + | Roberto Ierusalimschy | 2011-02-14 | 1 | -81/+84 |
* | p-close returns "correct" status plus type of termination | Roberto Ierusalimschy | 2011-02-10 | 1 | -16/+36 |
* | 'break' coded as 'goto' + small bug when closing multiple gotos | Roberto Ierusalimschy | 2011-02-10 | 1 | -59/+52 |
* | simpler code for repeat-until | Roberto Ierusalimschy | 2011-02-09 | 1 | -11/+5 |
* | corrected 'follow' for checking whether label is last statement | Roberto Ierusalimschy | 2011-02-09 | 1 | -14/+21 |
* | small changes in goto-related error messages | Roberto Ierusalimschy | 2011-02-09 | 1 | -8/+15 |
* | trying to avoid assumption that sizeof(char)==1 | Roberto Ierusalimschy | 2011-02-07 | 5 | -12/+13 |
* | ensures that all local variables are declared inside some block, | Roberto Ierusalimschy | 2011-02-07 | 1 | -45/+39 |
* | some reorganization of dynamic data structures used by the parser | Roberto Ierusalimschy | 2011-02-07 | 4 | -118/+104 |
* | no more 'OP_CLOSE' instructions (use jumps to close upvalues) | Roberto Ierusalimschy | 2011-02-07 | 4 | -12/+10 |
* | detail in 'print_usage' | Roberto Ierusalimschy | 2011-02-07 | 1 | -6/+4 |
* | first implementation of 'goto' | Roberto Ierusalimschy | 2011-02-04 | 4 | -23/+227 |
* | new reserved word 'goto' | Roberto Ierusalimschy | 2011-02-02 | 2 | -4/+4 |
* | avoid extra increment to 'savedpc' when jumping | Roberto Ierusalimschy | 2011-02-01 | 1 | -15/+20 |
* | new scheme to close upvalues in 'break'; jump instructions may | Roberto Ierusalimschy | 2011-02-01 | 5 | -21/+41 |
* | better control for GC running or stopped | Roberto Ierusalimschy | 2011-02-01 | 1 | -2/+2 |
* | bug: problem with optimizations of short-circuit logic | Roberto Ierusalimschy | 2011-01-31 | 1 | -2/+45 |
* | bug in some short-circuit optimizations | Roberto Ierusalimschy | 2011-01-31 | 1 | -21/+7 |
* | detail (cleaning trailing spaces) | Roberto Ierusalimschy | 2011-01-26 | 10 | -24/+24 |
* | 'sep' argument to 'string.rep' + 'string.rep' preallocates entire | Roberto Ierusalimschy | 2011-01-12 | 1 | -9/+23 |
* | 'luaL_findtable' returns boolean about whether it created a new | Roberto Ierusalimschy | 2011-01-10 | 2 | -5/+6 |
* | using 'luaL_findtable' to manage hook table | Roberto Ierusalimschy | 2011-01-10 | 1 | -17/+6 |
* | optional argument 'sep' to 'searchpath' | Roberto Ierusalimschy | 2011-01-07 | 1 | -5/+9 |
* | prototype for 'luaO_ceillog2' was different from definition | Roberto Ierusalimschy | 2011-01-07 | 1 | -2/+2 |
* | new function 'rawlen' | Roberto Ierusalimschy | 2011-01-07 | 1 | -1/+11 |
* | full collection does not restart collector + avoid changing GC | Roberto Ierusalimschy | 2010-12-29 | 3 | -20/+25 |
* | own implementation of 'tunumber', so that it works correctly with | Roberto Ierusalimschy | 2010-12-27 | 1 | -18/+24 |
* | more efficient hash for numbers in IEEE754 machines | Roberto Ierusalimschy | 2010-12-23 | 1 | -9/+10 |
* | change in the relationship between totalbytes and GCdebt - luaM_realloc_ | Roberto Ierusalimschy | 2010-12-20 | 5 | -26/+35 |
* | better control for GC running or stopped | Roberto Ierusalimschy | 2010-12-20 | 6 | -31/+31 |
* | error when indexing strings with invalid keys | Roberto Ierusalimschy | 2010-12-20 | 1 | -7/+19 |
* | 'debug.setmetatable' returns object (like 'setmetatable') | Roberto Ierusalimschy | 2010-12-20 | 1 | -3/+3 |
* | removed 'newproxy' | Roberto Ierusalimschy | 2010-12-17 | 1 | -37/+1 |
* | allows number of bits used by the library to be changed from outside | Roberto Ierusalimschy | 2010-12-17 | 1 | -11/+14 |
* | table library respects '#' metamethods | Roberto Ierusalimschy | 2010-12-17 | 1 | -4/+4 |