Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' (which converts | Roberto Ierusalimschy | 2014-04-30 | 1 | -11/+6 | |
| | | | | to float or integer according to the string syntax) | |||||
* | 'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue') | Roberto Ierusalimschy | 2014-04-29 | 1 | -3/+3 | |
| | ||||||
* | cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable from | Roberto Ierusalimschy | 2014-04-15 | 1 | -3/+3 | |
| | | | | outside (mostly for testing) | |||||
* | macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, that | Roberto Ierusalimschy | 2014-04-15 | 1 | -4/+4 | |
| | | | | should be used only between lua_Integer and lua_Unsigned | |||||
* | new global macro 'LUA_MAXUNSIGNED' | Roberto Ierusalimschy | 2014-04-12 | 1 | -3/+3 | |
| | ||||||
* | added an 'api_check' for negative sizes in 'lua_checkstack' | Roberto Ierusalimschy | 2014-04-01 | 1 | -1/+2 | |
| | ||||||
* | lua_gettable and similars return type of gotten value | Roberto Ierusalimschy | 2014-03-12 | 1 | -7/+13 | |
| | ||||||
* | detail (comments) | Roberto Ierusalimschy | 2014-02-26 | 1 | -9/+9 | |
| | ||||||
* | added 'stip' parameter to lua_dump/string.dump | Roberto Ierusalimschy | 2014-02-25 | 1 | -4/+4 | |
| | ||||||
* | userdata can have any Lua value as uservalue | Roberto Ierusalimschy | 2014-02-19 | 1 | -13/+5 | |
| | ||||||
* | field 'op' renamed to 'open' | Roberto Ierusalimschy | 2014-02-15 | 1 | -2/+2 | |
| | ||||||
* | change in the way 'collectgarbage("step", size)' interprets 'size' | Roberto Ierusalimschy | 2014-02-14 | 1 | -7/+15 | |
| | | | | | (mimicking the way the GC itself behaves when Lua allocates 'size' Kbytes) | |||||
* | limit to 'gcstepmul' imposed by 'lua_gc' (+ some details in 'lgc.c') | Roberto Ierusalimschy | 2014-02-13 | 1 | -1/+2 | |
| | ||||||
* | no more local collection | Roberto Ierusalimschy | 2014-02-13 | 1 | -8/+1 | |
| | ||||||
* | no more 'L' in macros "luai_num*" (several places that use those macros | Roberto Ierusalimschy | 2014-01-27 | 1 | -2/+2 | |
| | | | | cannot throw errors anyway...) | |||||
* | first implementation of '<<', '>>', and '~' (bitwise not) | Roberto Ierusalimschy | 2013-12-30 | 1 | -4/+4 | |
| | ||||||
* | detail ('ttisuserdata' renamed to 'ttisfulluserdata') | Roberto Ierusalimschy | 2013-12-04 | 1 | -4/+4 | |
| | ||||||
* | GC local pause configurable | Roberto Ierusalimschy | 2013-09-13 | 1 | -1/+6 | |
| | ||||||
* | detail (setmetatable do not need to use a back GC barrier) | Roberto Ierusalimschy | 2013-09-11 | 1 | -2/+2 | |
| | ||||||
* | upvalues collected by reference count | Roberto Ierusalimschy | 2013-08-27 | 1 | -8/+14 | |
| | ||||||
* | added 'local' bit (true => object is only refered by local variables) | Roberto Ierusalimschy | 2013-08-16 | 1 | -2/+6 | |
| | ||||||
* | no more generational collection !!! | Roberto Ierusalimschy | 2013-08-05 | 1 | -27/+8 | |
| | ||||||
* | 'lua_cvtonum' -> 'lua_strtonum'; converts only strings to numbers | Roberto Ierusalimschy | 2013-07-05 | 1 | -19/+12 | |
| | ||||||
* | avoid warning for unary minus over an unsigned value | Roberto Ierusalimschy | 2013-06-20 | 1 | -2/+2 | |
| | ||||||
* | new macro 'l_floor' (allows 'floorf' even when other math operations | Roberto Ierusalimschy | 2013-06-20 | 1 | -2/+2 | |
| | | | | do not have an 'f' variant) | |||||
* | correct way (I hope) to convert floats to unsigned int | Roberto Ierusalimschy | 2013-06-14 | 1 | -4/+8 | |
| | ||||||
* | 'lua_tounsigned' takes number modulo 2^numbits as a result when | Roberto Ierusalimschy | 2013-06-04 | 1 | -2/+28 | |
| | | | | | number is a float (That may change...) | |||||
* | new API function 'lua_cvtonum' to convert a value (number or string) | Roberto Ierusalimschy | 2013-05-14 | 1 | -1/+23 | |
| | | | | | to a number, following the rules of the language to create integers or floats | |||||
* | constant folding and API arithmetic with integers | Roberto Ierusalimschy | 2013-05-02 | 1 | -11/+4 | |
| | ||||||
* | new function 'tointeger' + 'luaV_arith' replaced by 'luaT_trybinTM' | Roberto Ierusalimschy | 2013-04-29 | 1 | -46/+20 | |
| | ||||||
* | favoring 'tonumber' over 'nvalue' | Roberto Ierusalimschy | 2013-04-26 | 1 | -3/+4 | |
| | ||||||
* | new interface for 'tonumber' | Roberto Ierusalimschy | 2013-04-26 | 1 | -10/+8 | |
| | ||||||
* | "integer" keys in tables are now lua_Integer, not 'int'. | Roberto Ierusalimschy | 2013-04-26 | 1 | -3/+3 | |
| | ||||||
* | new API function 'lua_isinteger' | Roberto Ierusalimschy | 2013-04-25 | 1 | -1/+7 | |
| | ||||||
* | (no commit message) | Roberto Ierusalimschy | 2013-04-15 | 1 | -4/+8 | |
| | ||||||
* | 'ttypenv' -> 'ttnov' | Roberto Ierusalimschy | 2013-04-12 | 1 | -8/+8 | |
| | ||||||
* | typos in comments | Roberto Ierusalimschy | 2013-03-16 | 1 | -2/+2 | |
| | ||||||
* | added comment | Roberto Ierusalimschy | 2012-12-05 | 1 | -2/+3 | |
| | ||||||
* | missing brackets in 'if' body (no bug, only 'luaC_checkfinalizer' is | Roberto Ierusalimschy | 2012-12-05 | 1 | -2/+3 | |
| | | | | called to do nothing) | |||||
* | removed unreacheable 'lua_unlock' | Roberto Ierusalimschy | 2012-11-04 | 1 | -2/+2 | |
| | ||||||
* | API functions get acceptable indices except when not possible (when | Roberto Ierusalimschy | 2012-10-19 | 1 | -15/+16 | |
| | | | | | they modify the value at that index) + new macro 'ispseudo' + specific test 'api_checkstackindex' | |||||
* | no more macro 'changenvalue' | Roberto Ierusalimschy | 2012-09-11 | 1 | -2/+2 | |
| | ||||||
* | details (remove of some extra spaces) | Roberto Ierusalimschy | 2012-08-14 | 1 | -3/+3 | |
| | ||||||
* | bugs in yields inside debug hooks | Roberto Ierusalimschy | 2012-06-08 | 1 | -2/+2 | |
| | ||||||
* | compensate for 'GCSTEPSIZE' in GC steps | Roberto Ierusalimschy | 2012-05-23 | 1 | -2/+2 | |
| | ||||||
* | merge of fields 'lastmajormem' (used in gen. mode) and 'estimate' | Roberto Ierusalimschy | 2012-05-22 | 1 | -2/+2 | |
| | | | | (used in inc. mode) | |||||
* | simpler macro 'luaC_condGC' + better 'step' in 'lua_gc' + | Roberto Ierusalimschy | 2012-05-21 | 1 | -9/+9 | |
| | | | | | micro bug in 'luaC_checkfinalizer' (current sweep object could be removed from 'allgc' list) | |||||
* | test for whether collector is running moved from function to | Roberto Ierusalimschy | 2012-05-11 | 1 | -3/+3 | |
| | | | | macro 'luaC_condGC'. | |||||
* | comments | Roberto Ierusalimschy | 2011-11-30 | 1 | -4/+4 | |
| | ||||||
* | 'lua_load' has an extra argument 'mode' | Roberto Ierusalimschy | 2011-11-29 | 1 | -3/+3 | |
| |