Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | small changes to avoid some warnings | Roberto Ierusalimschy | 2011-11-16 | 1 | -9/+5 | |
| | ||||||
* | cannot apply macro 'getstr' over NULL | Roberto Ierusalimschy | 2011-10-31 | 1 | -5/+6 | |
| | ||||||
* | 'lua_setglobal/lua_getglobal' implemented as functions to avoid | Roberto Ierusalimschy | 2011-10-24 | 1 | -1/+25 | |
| | | | | | problems with stack indices (e.g., lua_getglobal(L, lua_tostring(L, -1)) ) | |||||
* | new functions lua_rawsetp/lua_rawgetp | Roberto Ierusalimschy | 2011-10-24 | 1 | -10/+38 | |
| | ||||||
* | lint (unreachable code) | Roberto Ierusalimschy | 2011-09-30 | 1 | -9/+9 | |
| | ||||||
* | detail: new macros for non-valid values | Roberto Ierusalimschy | 2011-09-26 | 1 | -12/+13 | |
| | ||||||
* | bug: __newindex metamethod may not work if metatable is its own | Roberto Ierusalimschy | 2011-08-17 | 1 | -1/+2 | |
| | | | | | metatable + luaV_settable does not create entry when there is a metamethod (and therefore entry is useless) | |||||
* | no more 'luaH_setstr (used only once) + 'luaH_setint' receives value | Roberto Ierusalimschy | 2011-08-09 | 1 | -2/+2 | |
| | | | | to be set. |