Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | more explicit handling of headers for binary chunks | Roberto Ierusalimschy | 2014-02-27 | 3 | -59/+53 | |
| | ||||||
* | removal of weird construction in definition of LUA_STRFTIMEOPTIONS | Roberto Ierusalimschy | 2014-02-26 | 1 | -3/+3 | |
| | | | | (two empty strings concatenated as in "" "") | |||||
* | more uniformity for defining system-dependent features | Roberto Ierusalimschy | 2014-02-26 | 6 | -65/+101 | |
| | ||||||
* | detail (comments) | Roberto Ierusalimschy | 2014-02-26 | 1 | -9/+9 | |
| | ||||||
* | added macro MAX_UINTEGER | Roberto Ierusalimschy | 2014-02-26 | 1 | -3/+5 | |
| | ||||||
* | detail (comment) | Roberto Ierusalimschy | 2014-02-26 | 1 | -2/+6 | |
| | ||||||
* | detail (unknown lines are marked as -1, not 0) | Roberto Ierusalimschy | 2014-02-25 | 1 | -2/+2 | |
| | ||||||
* | added 'stip' parameter to lua_dump/string.dump | Roberto Ierusalimschy | 2014-02-25 | 1 | -4/+4 | |
| | ||||||
* | added 'strip' parameter to lua_dump/string.dump | Roberto Ierusalimschy | 2014-02-25 | 2 | -4/+5 | |
| | ||||||
* | 'read_all' does not need to grow buffer, as 'luaL_prepbuffsize' | Roberto Ierusalimschy | 2014-02-21 | 1 | -11/+6 | |
| | | | | already does that | |||||
* | userdata can have any Lua value as uservalue | Roberto Ierusalimschy | 2014-02-19 | 7 | -30/+37 | |
| | ||||||
* | detail (better error messages for light userdata) | Roberto Ierusalimschy | 2014-02-19 | 1 | -1/+3 | |
| | ||||||
* | no need to keep threads in a different GC list, now that there is the | Roberto Ierusalimschy | 2014-02-18 | 5 | -33/+17 | |
| | | | | 'twups' list | |||||
* | new list 'twups' to allow traversal of upvalues from dead threads | Roberto Ierusalimschy | 2014-02-18 | 5 | -17/+58 | |
| | | | | (+ fixed some problems with cycles involving those upvalues) | |||||
* | field 'op' renamed to 'open' | Roberto Ierusalimschy | 2014-02-15 | 6 | -17/+17 | |
| | ||||||
* | no more second result from 'collectgarbage"count"' (as Lua seldom | Roberto Ierusalimschy | 2014-02-14 | 1 | -4/+3 | |
| | | | | will need lua_Number to be an integer) | |||||
* | change in the way 'collectgarbage("step", size)' interprets 'size' | Roberto Ierusalimschy | 2014-02-14 | 3 | -24/+23 | |
| | | | | | (mimicking the way the GC itself behaves when Lua allocates 'size' Kbytes) | |||||
* | new syntax for Unicode escape '\u{012F}' | Roberto Ierusalimschy | 2014-02-14 | 1 | -5/+8 | |
| | ||||||
* | limit to 'gcstepmul' imposed by 'lua_gc' (+ some details in 'lgc.c') | Roberto Ierusalimschy | 2014-02-13 | 2 | -12/+20 | |
| | ||||||
* | better control for number of finalizers called at each GC cycle | Roberto Ierusalimschy | 2014-02-13 | 4 | -31/+52 | |
| | | | | (increases progressively) | |||||
* | 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 | |
| | | | | objects), to ensure finalization order | |||||
* | 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 | |
| | | | | not by the core | |||||
* | still accepts initial '=' for expressions, for compatibility with old | Roberto Ierusalimschy | 2014-02-05 | 1 | -2/+5 | |
| | | | | versions (and old habits...) | |||||
* | 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 | |
| | | | | cannot throw errors anyway...) | |||||
* | 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 | |
| | | | | that chars have 8 bits | |||||
* | 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 | |
| | | | | renamed all to 'arg' | |||||
* | 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 | |
| | | | | and '~' (bxor) | |||||
* | 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 | |
| |