Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | correct handling of negative numbers in non-10 bases by 'tonumber' | Roberto Ierusalimschy | 2010-10-28 | 1 | -2/+5 |
| | | | | (e.g., tonumber(-34, 8)) | ||||
* | 'loadin' should not check whether upvalue is called '_ENV', | Roberto Ierusalimschy | 2010-09-07 | 1 | -5/+3 |
| | | | | because its name may be unknown when there is no debug information. | ||||
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+2 |
| | |||||
* | new parameter 'majorinc' to control frequency of major collections | Roberto Ierusalimschy | 2010-09-03 | 1 | -4/+4 |
| | | | | in generational mode | ||||
* | 'loadin' should accept any value for the environment (not only tables) + | Roberto Ierusalimschy | 2010-08-23 | 1 | -3/+6 |
| | | | | it should check whether chunk has upvalue named '_ENV' | ||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -2/+2 |
| | | | | | | themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated. | ||||
* | 'ipair' is back | Roberto Ierusalimschy | 2010-06-13 | 1 | -12/+2 |
| | |||||
* | 'coroutine' library separated from 'baselib' | Roberto Ierusalimschy | 2010-06-10 | 1 | -146/+3 |
| | |||||
* | 'gcinfo' was deprecated in version 5.0. | Roberto Ierusalimschy | 2010-04-19 | 1 | -8/+1 |
| | |||||
* | with light C functions, 'pairs' does not need to keep 'next' as an | Roberto Ierusalimschy | 2010-04-19 | 1 | -18/+8 |
| | | | | upvalue. | ||||
* | option to return GC to normal (incremental, non generational) mode | Roberto Ierusalimschy | 2010-04-02 | 1 | -3/+4 |
| | |||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -39/+1 |
| | |||||
* | draft version of a generational mode for garbage collection. (Not well | Roberto Ierusalimschy | 2010-03-22 | 1 | -3/+3 |
| | | | | tested; no major collections; ...) | ||||
* | 'ipairs' is deprecated | Roberto Ierusalimschy | 2010-03-19 | 1 | -1/+13 |
| | |||||
* | better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEX | Roberto Ierusalimschy | 2010-03-13 | 1 | -5/+6 |
| | |||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -2/+2 |
| | |||||
* | 'unpack' moved to table library (and therefore "renamed" to | Roberto Ierusalimschy | 2009-12-28 | 1 | -18/+1 |
| | | | | 'table.unpack'. | ||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -7/+7 |
| | | | | through registry | ||||
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -3/+3 |
| | |||||
* | detail ('lua_tolstring' instead of lua_objlen) | Roberto Ierusalimschy | 2009-12-15 | 1 | -3/+4 |
| | |||||
* | avoid using deprecated macros lua_[gs]etglobal | Roberto Ierusalimschy | 2009-12-11 | 1 | -5/+5 |
| | |||||
* | detail (lua_resume should empty coroutine stack even if they do not | Roberto Ierusalimschy | 2009-12-10 | 1 | -1/+2 |
| | | | | fit into caller stack) | ||||
* | coroutines may have C bodies | Roberto Ierusalimschy | 2009-11-27 | 1 | -3/+2 |
| | |||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 |
| | |||||
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 1 | -3/+1 |
| | | | | but stack entry knows whether it was tail called | ||||
* | new mark LUAMOD_API for all luaopen_* functions | Roberto Ierusalimschy | 2009-11-24 | 1 | -2/+2 |
| | |||||
* | comments | Roberto Ierusalimschy | 2009-11-19 | 1 | -4/+4 |
| | |||||
* | functions 'getfenv' and 'setfenv' are deprecated | Roberto Ierusalimschy | 2009-11-16 | 1 | -3/+14 |
| | |||||
* | new function 'loadin' | Roberto Ierusalimschy | 2009-11-13 | 1 | -23/+61 |
| | |||||
* | new option 'isrunning' for 'lua_gc' (and 'collectgarbage') | Roberto Ierusalimschy | 2009-11-09 | 1 | -7/+8 |
| | |||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -10/+3 |
| | | | | environment | ||||
* | 'ipairs' goes until length of array instead of stopping at the first nil | Roberto Ierusalimschy | 2009-10-23 | 1 | -2/+2 |
| | |||||
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -3/+2 |
| | |||||
* | 'collectgarbage"count"' returns a second argument with the count%1024. | Roberto Ierusalimschy | 2009-08-04 | 1 | -2/+3 |
| | |||||
* | calls with LUA_MULTRET may leave no free slots in the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -1/+3 |
| | |||||
* | errors in 'resume' should be all protected | Roberto Ierusalimschy | 2009-07-08 | 1 | -5/+9 |
| | |||||
* | first implementation of yieldable 'pcall' | Roberto Ierusalimschy | 2009-04-08 | 1 | -3/+16 |
| | |||||
* | 'context' added to suspendable calls | Roberto Ierusalimschy | 2009-03-23 | 1 | -2/+2 |
| | |||||
* | missing argument to 'assert' raises "assertion failed" error | Roberto Ierusalimschy | 2009-03-16 | 1 | -2/+1 |
| | |||||
* | new optional argument to 'load', to control allowed modes (binary or | Roberto Ierusalimschy | 2009-03-13 | 1 | -15/+41 |
| | | | | textual chunks) | ||||
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 1 | -3/+8 |
| | |||||
* | 'writestring' changed into a configurable macro | Roberto Ierusalimschy | 2009-02-07 | 1 | -17/+4 |
| | |||||
* | avoid using 'fputs' in 'print' to avoid problems with embedded zeros | Roberto Ierusalimschy | 2009-02-06 | 1 | -6/+12 |
| | |||||
* | do not use compatibility macros in Lua | Roberto Ierusalimschy | 2008-07-11 | 1 | -2/+2 |
| | |||||
* | useless #include removed (pointed by lint) | Roberto Ierusalimschy | 2008-07-03 | 1 | -2/+1 |
| | |||||
* | 'coroutine.running' should work for the main thread too | Roberto Ierusalimschy | 2008-02-25 | 1 | -4/+4 |
| | |||||
* | proxies must be created with a __gc field in their metatables to work | Roberto Ierusalimschy | 2008-02-19 | 1 | -2/+4 |
| | | | | properly with new semantics for finalizers | ||||
* | bug: unpack with maximum indices may crash due to arithmetic overflow | Roberto Ierusalimschy | 2008-02-14 | 1 | -4/+6 |
| | |||||
* | bug: auxresume should reserve stack space for boolean result | Roberto Ierusalimschy | 2008-02-11 | 1 | -2/+2 |
| | |||||
* | luaL_tostring -> luaL_tolstring (more generic) | Roberto Ierusalimschy | 2008-01-03 | 1 | -2/+2 |
| |