Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 2010-11-10 | 1 | -1/+7 |
| | |||||
* | 'luaL_typeerror' deprecated | Roberto Ierusalimschy | 2010-11-10 | 1 | -4/+4 |
| | |||||
* | detail (message) | Roberto Ierusalimschy | 2010-11-09 | 1 | -2/+2 |
| | |||||
* | 'luaL_checkversion' also checks convertions (number to integer types) | Roberto Ierusalimschy | 2010-10-29 | 1 | -1/+8 |
| | |||||
* | new type lua_Unsigned and corresponding projection/injection functions | Roberto Ierusalimschy | 2010-10-25 | 1 | -1/+16 |
| | |||||
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 |
| | | | | details) | ||||
* | 'luaL_loadlib' accepts Utf8 BOM in the beginning of files | Roberto Ierusalimschy | 2010-10-01 | 1 | -13/+26 |
| | |||||
* | use index 0 for header of list of free references | Roberto Ierusalimschy | 2010-08-03 | 1 | -7/+7 |
| | |||||
* | 'module'/'luaL_register' and associates are deprecated | Roberto Ierusalimschy | 2010-07-28 | 1 | -1/+3 |
| | |||||
* | functions lua_tonumber/lua_tointeger replaced by lua_tonumberx/lua_tointegerx | Roberto Ierusalimschy | 2010-07-02 | 1 | -7/+10 |
| | | | | that have an extra out parameter with conversion status | ||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -4/+41 |
| | | | | | | 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. | ||||
* | old (and complex) luaL_findtable now used only in compatibility code | Roberto Ierusalimschy | 2010-06-30 | 1 | -30/+51 |
| | | | | inside lauxlib.c | ||||
* | back with #-comments for binary files | Roberto Ierusalimschy | 2010-06-09 | 1 | -13/+30 |
| | |||||
* | factoring out common code in 'module' and 'luaL_openlib' | Roberto Ierusalimschy | 2010-05-31 | 1 | -14/+28 |
| | |||||
* | more comments | Roberto Ierusalimschy | 2010-05-18 | 1 | -9/+9 |
| | |||||
* | bug: loadfile of binary files read first character twice | Roberto Ierusalimschy | 2010-05-18 | 1 | -1/+2 |
| | |||||
* | detail (comment) | Roberto Ierusalimschy | 2010-05-17 | 1 | -2/+2 |
| | |||||
* | new API function 'lua_absindex' | Roberto Ierusalimschy | 2010-05-12 | 1 | -9/+4 |
| | |||||
* | avoid reserving LUA_RIDX_LAST slots in any table used by reference | Roberto Ierusalimschy | 2010-05-10 | 1 | -15/+9 |
| | | | | | system. Store free list in a field indexed by a unique name, instead of using a numerical index. | ||||
* | no more 'ccall' nor 'cpcall' functions. (With light C functions they | Roberto Ierusalimschy | 2010-04-14 | 1 | -12/+1 |
| | | | | are obsolete.) | ||||
* | new implementation for Generic Buffer manipulation (using userdata as | Roberto Ierusalimschy | 2010-04-09 | 1 | -71/+53 |
| | | | | temporary buffer space) | ||||
* | comments | Roberto Ierusalimschy | 2010-03-29 | 1 | -3/+3 |
| | |||||
* | 'lua_assert' not visible from libraries | Roberto Ierusalimschy | 2010-03-22 | 1 | -3/+2 |
| | |||||
* | 'cpcall' renamed to 'ccall' as it does not do a protected call | Roberto Ierusalimschy | 2010-03-19 | 1 | -2/+2 |
| | |||||
* | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 2010-03-17 | 1 | -8/+13 |
| | | | | be deprecated) | ||||
* | small optimization in luaL_addlstring (avoid adding chars one by one) | Roberto Ierusalimschy | 2010-03-12 | 1 | -3/+14 |
| | | | | (suggested by Chuck Coffing) | ||||
* | detail: in loadfile read function, no need to return NULL on EOF; | Roberto Ierusalimschy | 2010-02-18 | 1 | -2/+2 |
| | | | | size ==0 is enough to signal EOF. | ||||
* | avoid using 'ungetc' in loadfile | Roberto Ierusalimschy | 2010-02-18 | 1 | -7/+15 |
| | |||||
* | new macro 'luai_writestringerror' | Roberto Ierusalimschy | 2010-02-18 | 1 | -2/+2 |
| | |||||
* | removed support for '#fist-line comment' on binary files (as binary | Roberto Ierusalimschy | 2010-02-11 | 1 | -14/+2 |
| | | | | files do not have lines...) | ||||
* | new function 'luaL_cpcall' | Roberto Ierusalimschy | 2010-01-21 | 1 | -1/+12 |
| | |||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -4/+5 |
| | | | | through registry | ||||
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -4/+15 |
| | |||||
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 1 | -3/+5 |
| | | | | but stack entry knows whether it was tail called | ||||
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -3/+3 |
| | |||||
* | function list in luaL_register may be NULL for an empty list | Roberto Ierusalimschy | 2009-09-28 | 1 | -2/+3 |
| | |||||
* | references must start after predefined values in the registry | Roberto Ierusalimschy | 2009-09-18 | 1 | -8/+8 |
| | |||||
* | 'luaL_tolstring' uses 'lua_tolstring' instead of 'lua_tostring' and | Roberto Ierusalimschy | 2009-07-15 | 1 | -5/+2 |
| | | | | 'lua_objlen' | ||||
* | new way to control stack overflow, controling only total size of the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -7/+18 |
| | |||||
* | better error messages for luaL_checkversion | Roberto Ierusalimschy | 2009-06-19 | 1 | -4/+5 |
| | |||||
* | 'checkversion' implemented in the auxiliary library | Roberto Ierusalimschy | 2009-06-18 | 1 | -2/+11 |
| | |||||
* | added comment explaining why the 'feof' test when loading a file | Roberto Ierusalimschy | 2009-04-02 | 1 | -1/+4 |
| | |||||
* | Lua will abort anyway, so 'panic' does not need to. | Roberto Ierusalimschy | 2009-03-31 | 1 | -2/+2 |
| | |||||
* | error functions search global space for a name for a function when | Roberto Ierusalimschy | 2009-02-27 | 1 | -3/+55 |
| | | | | no other name is available | ||||
* | code section 'Traceback' moved to the beginning of the file | Roberto Ierusalimschy | 2009-02-27 | 1 | -52/+61 |
| | |||||
* | new macro 'lua_checkversion' to check whether core and application are | Roberto Ierusalimschy | 2009-02-18 | 1 | -1/+2 |
| | | | | compatible | ||||
* | buffer creation ensures buffer space plus MINSTACK in the stack | Roberto Ierusalimschy | 2009-02-17 | 1 | -1/+2 |
| | |||||
* | 'luaL_typeerror' spelled right | Roberto Ierusalimschy | 2009-02-13 | 1 | -4/+4 |
| | |||||
* | identation error (pointed by lint) | Roberto Ierusalimschy | 2008-07-03 | 1 | -2/+2 |
| | |||||
* | when error is 'bad self' original message probably makes no sense, so | Roberto Ierusalimschy | 2008-06-13 | 1 | -3/+2 |
| | | | | it is better not to show it. |