| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | make sure that LUAC_INT is a lua_Integer and that LUAC_NUM is | Roberto Ierusalimschy | 2014-03-11 | 1 | -3/+4 |
* | detail (breaking too long lines) | Roberto Ierusalimschy | 2014-03-10 | 1 | -3/+5 |
* | no need to avoid negative ints in 'LoadInt' | Roberto Ierusalimschy | 2014-03-10 | 1 | -3/+1 |
* | "indent -kr -i2 -br -brf -nut" plus a few manual formating | Roberto Ierusalimschy | 2014-03-10 | 2 | -344/+363 |
* | small bug (from revision 2.80): LUA_OP* constants are not from | Roberto Ierusalimschy | 2014-03-09 | 1 | -2/+2 |
* | new macro 'cast_void' | Roberto Ierusalimschy | 2014-03-07 | 3 | -7/+9 |
* | simpler code to read a line from a file (using 'getc' or, if present, | Roberto Ierusalimschy | 2014-03-06 | 1 | -17/+24 |
* | back with 'L' for macros 'luai_num*', but now with a new macro | Roberto Ierusalimschy | 2014-03-06 | 4 | -31/+43 |
* | 'constfolding' passes a proper Lua state to 'luaO_arith' | Roberto Ierusalimschy | 2014-03-06 | 1 | -4/+4 |
* | detail ('codearith' uses 'LUA_OP*' constants instead of 'OP_*') | Roberto Ierusalimschy | 2014-03-06 | 1 | -10/+15 |
* | no need to store a full 'size_t' fo the size of (frequent) small strings | Roberto Ierusalimschy | 2014-03-01 | 2 | -16/+16 |
* | more regularity with vectors + sizeof computed by the macros themselves | Roberto Ierusalimschy | 2014-02-28 | 2 | -19/+18 |
* | all chars used in binary dumps are unsigned ('lu_byte') | Roberto Ierusalimschy | 2014-02-28 | 2 | -24/+23 |
* | store number of upvalues of main function in front of the dump, | Roberto Ierusalimschy | 2014-02-27 | 2 | -10/+5 |
* | 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 |
* | 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 |
* | 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 |
* | new list 'twups' to allow traversal of upvalues from dead threads | Roberto Ierusalimschy | 2014-02-18 | 5 | -17/+58 |
* | 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 |
* | change in the way 'collectgarbage("step", size)' interprets 'size' | Roberto Ierusalimschy | 2014-02-14 | 3 | -24/+23 |
* | 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 |
* | 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 |