| Commit message (Expand) | Author | Age | Files | Lines |
* | better control for number of finalizers called at each GC cycle | Roberto Ierusalimschy | 2014-02-13 | 4 | -31/+52 |
* | no more local collection | Roberto Ierusalimschy | 2014-02-13 | 10 | -263/+69 |
* | new field '__name' in metatables to help better error messages | Roberto Ierusalimschy | 2014-02-11 | 1 | -3/+11 |
* | detail (better presentation for 'luaC_step') | Roberto Ierusalimschy | 2014-02-11 | 1 | -12/+11 |
* | keep a single list of objects to be finalized (with local and non-local | Roberto Ierusalimschy | 2014-02-11 | 5 | -60/+37 |
* | added proper headers for a standard lib file | Roberto Ierusalimschy | 2014-02-06 | 1 | -4/+11 |
* | C++ needs casts for arithmetic with enums | Roberto Ierusalimschy | 2014-02-06 | 1 | -3/+3 |
* | new library: utf8 | Roberto Ierusalimschy | 2014-02-06 | 4 | -6/+244 |
* | UTF-8 encoding exported as format '%U' in 'lua_pushfstring' | Roberto Ierusalimschy | 2014-02-06 | 3 | -21/+37 |
* | insertion of ".0" in floats with integer values done by "luaL_tolstring", | Roberto Ierusalimschy | 2014-02-05 | 2 | -17/+15 |
* | still accepts initial '=' for expressions, for compatibility with old | Roberto Ierusalimschy | 2014-02-05 | 1 | -2/+5 |
* | added support for UTF-8 escapes | Roberto Ierusalimschy | 2014-02-04 | 1 | -11/+45 |
* | simpler way to create messages for errors in escape sequences | Roberto Ierusalimschy | 2014-01-31 | 2 | -28/+33 |
* | no more 'L' in macros "luai_num*" (several places that use those macros | Roberto Ierusalimschy | 2014-01-27 | 6 | -40/+40 |
* | comment | Roberto Ierusalimschy | 2014-01-27 | 1 | -2/+2 |
* | larger limit + better error messages for loop detection in inheritance | Roberto Ierusalimschy | 2014-01-22 | 1 | -4/+4 |
* | added explicit default options to string.pack/unpack functions | Roberto Ierusalimschy | 2014-01-09 | 1 | -5/+9 |
* | first implementation for string.pack/unpackfloat + try not to assume | Roberto Ierusalimschy | 2014-01-08 | 1 | -14/+97 |
* | first implementation of string.packint/string.unpackint | Roberto Ierusalimschy | 2014-01-05 | 1 | -1/+124 |
* | 'arg' arguments (previously called 'narg', 'nArg', 'numArg', etc.) | Roberto Ierusalimschy | 2014-01-05 | 2 | -61/+61 |
* | first implementation of '<<', '>>', and '~' (bitwise not) | Roberto Ierusalimschy | 2013-12-30 | 15 | -49/+139 |
* | small change in handling of unary operations | Roberto Ierusalimschy | 2013-12-18 | 1 | -14/+13 |
* | first implementation of bitwise operators '&' (band), '|' (bor), | Roberto Ierusalimschy | 2013-12-18 | 11 | -47/+122 |
* | new order for binary operations (grouping them by type of result) | Roberto Ierusalimschy | 2013-12-16 | 9 | -35/+41 |
* | integer exponentiation with negative exponent is invalid | Roberto Ierusalimschy | 2013-12-16 | 4 | -30/+32 |
* | new "calculator mode"; no need to add '=' to print expressions | Roberto Ierusalimschy | 2013-12-16 | 1 | -18/+40 |
* | details | Roberto Ierusalimschy | 2013-12-13 | 1 | -17/+13 |
* | use goto to implement a tail call in 'reallymarkobject' | Roberto Ierusalimschy | 2013-12-13 | 1 | -4/+9 |
* | 'lua_sethook' returns void | Roberto Ierusalimschy | 2013-12-09 | 2 | -5/+4 |
* | detail ('ttisuserdata' renamed to 'ttisfulluserdata') | Roberto Ierusalimschy | 2013-12-04 | 2 | -7/+7 |
* | details (comments) | Roberto Ierusalimschy | 2013-11-21 | 1 | -2/+2 |
* | new bug: Resuming the running coroutine makes it unyieldable | Roberto Ierusalimschy | 2013-11-08 | 1 | -2/+32 |
* | bug: attempting to resume the running coroutine makes it unyieldable | Roberto Ierusalimschy | 2013-11-08 | 1 | -2/+3 |
* | added patch for last bug | Roberto Ierusalimschy | 2013-11-08 | 1 | -2/+28 |
* | new macro 'luai_userstateclose' (to test it is being called correctly) | Roberto Ierusalimschy | 2013-11-08 | 1 | -1/+3 |
* | bug: should call 'luai_userstateclose' only when 'luai_userstateopen' | Roberto Ierusalimschy | 2013-11-08 | 1 | -6/+8 |
* | "./?/init.lua" added to default path | Roberto Ierusalimschy | 2013-10-10 | 1 | -3/+5 |
* | detail (changing some names of macros) | Roberto Ierusalimschy | 2013-10-07 | 2 | -17/+17 |
* | CallInfo lists shrinks together with their associated stacks | Roberto Ierusalimschy | 2013-09-17 | 4 | -6/+29 |
* | GC local pause configurable | Roberto Ierusalimschy | 2013-09-13 | 6 | -35/+41 |
* | detail (setmetatable do not need to use a back GC barrier) | Roberto Ierusalimschy | 2013-09-11 | 2 | -7/+3 |
* | type of 'refcount' changed to lu_mem (to ensure there will be no | Roberto Ierusalimschy | 2013-09-11 | 1 | -2/+2 |
* | check for shrinking string table done only at the end of a GC cycle | Roberto Ierusalimschy | 2013-09-11 | 2 | -8/+11 |
* | new names and better order for GC states (sweep first lists that | Roberto Ierusalimschy | 2013-09-11 | 3 | -30/+30 |
* | threads are kept in a separated GC list, linked after the main thread | Roberto Ierusalimschy | 2013-09-11 | 5 | -47/+47 |
* | detail: 'sweepstep' checks end of phase after calling 'sweeplist', so | Roberto Ierusalimschy | 2013-09-11 | 1 | -6/+7 |
* | objects in list 'tobefnz' have a GC life-cycle like all others | Roberto Ierusalimschy | 2013-09-11 | 3 | -17/+21 |
* | 'luaC_newobj' does not handle special cases; only special case | Roberto Ierusalimschy | 2013-09-11 | 6 | -35/+31 |
* | more invariants added to memory check | Roberto Ierusalimschy | 2013-09-11 | 1 | -3/+4 |
* | back to open hashing for the string table (but with a different | Roberto Ierusalimschy | 2013-09-05 | 5 | -92/+61 |