Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | | | | opening a new block at 'open_func' | |||||
* | 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 | |
| | | | | do the close, avoiding the need for a OP_CLOSE instruction | |||||
* | 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 | |
| | | | | buffer before creating resulting string | |||||
* | 'luaL_findtable' returns boolean about whether it created a new | Roberto Ierusalimschy | 2011-01-10 | 2 | -5/+6 | |
| | | | | table (to easy initializing table) | |||||
* | 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 | |
| | | | | state if an error happens in a step | |||||
* | own implementation of 'tunumber', so that it works correctly with | Roberto Ierusalimschy | 2010-12-27 | 1 | -18/+24 | |
| | | | | numbers outside the 'int' range | |||||
* | 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 | |
| | | | | is too critical to update two counters | |||||
* | 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 | |
| | ||||||
* | GC does not mark dead registers inside activation record | Roberto Ierusalimschy | 2010-12-17 | 1 | -6/+21 | |
| | ||||||
* | new closures are always created on "next" register (so that GC knows | Roberto Ierusalimschy | 2010-12-17 | 1 | -9/+6 | |
| | | | | stack limit) | |||||
* | new macro 'luaC_condGC' to allow extra code to be run in case | Roberto Ierusalimschy | 2010-12-17 | 1 | -2/+4 | |
| | | | | of GC steps | |||||
* | comment | Roberto Ierusalimschy | 2010-12-15 | 1 | -2/+2 | |
| | ||||||
* | 'loadin' -> 'load' | Roberto Ierusalimschy | 2010-12-13 | 1 | -44/+29 | |
| | ||||||
* | official support for floating hexa numerals | Roberto Ierusalimschy | 2010-12-10 | 3 | -13/+99 | |
| | ||||||
* | 'hexafloat' moved to 'lobject.c' (hexa conversion needs it too) | Roberto Ierusalimschy | 2010-12-10 | 2 | -10/+4 | |
| | ||||||
* | new macro 'cast_uchar' | Roberto Ierusalimschy | 2010-12-10 | 2 | -4/+5 | |
| | ||||||
* | 'loadstring' deprecated; use 'load' instead | Roberto Ierusalimschy | 2010-12-08 | 2 | -13/+18 | |
| | ||||||
* | comment | Roberto Ierusalimschy | 2010-12-07 | 1 | -2/+2 | |
| | ||||||
* | detection of erroneous numeric strings with \0 (such as "1\0") | Roberto Ierusalimschy | 2010-12-06 | 4 | -13/+17 | |
| | ||||||
* | using 'strspn' to skip spaces in 'tonumber' | Roberto Ierusalimschy | 2010-12-06 | 1 | -5/+9 | |
| | ||||||
* | 'printf' replaced by 'luai_writestring' | Roberto Ierusalimschy | 2010-12-03 | 1 | -2/+2 | |
| | ||||||
* | 'micro' bug: when closing state, old objects are finalized (breaking | Roberto Ierusalimschy | 2010-12-03 | 1 | -5/+8 | |
| | | | | assertion) | |||||
* | comments | Roberto Ierusalimschy | 2010-12-02 | 1 | -3/+3 | |
| | ||||||
* | getlocal/setlocal can access vararg parameters | Roberto Ierusalimschy | 2010-11-30 | 1 | -9/+22 | |
| | ||||||
* | new functions 'extract' and 'replace' | Roberto Ierusalimschy | 2010-11-29 | 1 | -13/+56 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 7 | -57/+63 | |
| | ||||||
* | removed deprecated functions getn-foreach-foreachiv5.2-alpha | Roberto Ierusalimschy | 2010-11-23 | 1 | -53/+7 | |
| | ||||||
* | 'test' -> 'btest' | Roberto Ierusalimschy | 2010-11-22 | 1 | -2/+2 | |
| |