Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | declarations should be present only when implementations are | Roberto Ierusalimschy | 2011-06-16 | 1 | -1/+4 |
| | |||||
* | 'luaL_findtable' -> 'luaL_getsubtable' | Roberto Ierusalimschy | 2011-04-08 | 1 | -2/+2 |
| | |||||
* | returns for file-related functions and process-related functions | Roberto Ierusalimschy | 2011-03-03 | 1 | -1/+4 |
| | | | | unified in 'auxlib' | ||||
* | 'luaL_findtable' returns boolean about whether it created a new | Roberto Ierusalimschy | 2011-01-10 | 1 | -2/+2 |
| | | | | table (to easy initializing table) | ||||
* | comment about compatibility-only functions | Roberto Ierusalimschy | 2010-11-16 | 1 | -3/+5 |
| | |||||
* | no more compatibility with (veryyyy) old ref system | Roberto Ierusalimschy | 2010-11-16 | 1 | -18/+5 |
| | |||||
* | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 2010-11-10 | 1 | -1/+2 |
| | |||||
* | 'luaL_typeerror' deprecated | Roberto Ierusalimschy | 2010-11-10 | 1 | -2/+1 |
| | |||||
* | new type lua_Unsigned and corresponding projection/injection functions | Roberto Ierusalimschy | 2010-10-25 | 1 | -1/+4 |
| | |||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -5/+17 |
| | | | | | | 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 | -3/+2 |
| | | | | inside lauxlib.c | ||||
* | factoring out common code in 'module' and 'luaL_openlib' | Roberto Ierusalimschy | 2010-05-31 | 1 | -1/+3 |
| | |||||
* | missing parentheses in declaration | Roberto Ierusalimschy | 2010-05-04 | 1 | -2/+2 |
| | |||||
* | missing parentheses around 'luaL_pushresultsize' declaration | Roberto Ierusalimschy | 2010-04-19 | 1 | -2/+2 |
| | |||||
* | no more 'ccall' nor 'cpcall' functions. (With light C functions they | Roberto Ierusalimschy | 2010-04-14 | 1 | -4/+1 |
| | | | | are obsolete.) | ||||
* | new implementation for Generic Buffer manipulation (using userdata as | Roberto Ierusalimschy | 2010-04-09 | 1 | -10/+13 |
| | | | | temporary buffer space) | ||||
* | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 2010-03-17 | 1 | -8/+11 |
| | | | | be deprecated) | ||||
* | new function 'luaL_cpcall' | Roberto Ierusalimschy | 2010-01-21 | 1 | -1/+3 |
| | |||||
* | removed old prototype for 'luaI_openlib' (which does not exist anymore) | Roberto Ierusalimschy | 2010-01-11 | 1 | -3/+1 |
| | |||||
* | compatibility code removed or moved to luaconf.h | Roberto Ierusalimschy | 2010-01-06 | 1 | -7/+1 |
| | |||||
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+2 |
| | |||||
* | 'checkversion' implemented in the auxiliary library | Roberto Ierusalimschy | 2009-06-18 | 1 | -1/+3 |
| | |||||
* | 'luaL_typeerror' spelled right | Roberto Ierusalimschy | 2009-02-13 | 1 | -2/+6 |
| | |||||
* | luaL_tostring -> luaL_tolstring (more generic) | Roberto Ierusalimschy | 2008-01-03 | 1 | -2/+2 |
| | |||||
* | detail | Roberto Ierusalimschy | 2007-06-22 | 1 | -3/+3 |
| | |||||
* | traceback function moved to auxlib | Roberto Ierusalimschy | 2007-06-22 | 1 | -1/+3 |
| | |||||
* | clearing some old compatibility code | Roberto Ierusalimschy | 2007-06-21 | 1 | -13/+1 |
| | |||||
* | luaL_testudata (a luaL_checkudata that does not raise errors) is | Roberto Ierusalimschy | 2007-05-15 | 1 | -1/+2 |
| | | | | very needed. | ||||
* | new function luaL_tostring | Roberto Ierusalimschy | 2007-02-07 | 1 | -1/+2 |
| | |||||
* | lua_dostring/lua_dofile should return any values returned by the chunk | Roberto Ierusalimschy | 2006-04-12 | 1 | -3/+5 |
| | |||||
* | small optimizations (lua_newtable -> lua_createtable) | Roberto Ierusalimschy | 2005-12-29 | 1 | -2/+2 |
| | |||||
* | new macro luaL_opt to avoid evaluating defaults when no needed | Roberto Ierusalimschy | 2005-10-21 | 1 | -1/+2 |
| | |||||
* | avoid exporting undefined functions | Roberto Ierusalimschy | 2005-09-06 | 1 | -5/+5 |
| | |||||
* | detail | Roberto Ierusalimschy | 2005-08-26 | 1 | -5/+7 |
| | |||||
* | no more 'luaL_get/setfield' (replaced by more direct luaL_findtable) | Roberto Ierusalimschy | 2005-08-26 | 1 | -5/+4 |
| | |||||
* | simpler implementation for userdata types | Roberto Ierusalimschy | 2005-08-18 | 1 | -2/+3 |
| | |||||
* | luaL_openlib -> luaL_register and new function luaL_loadstring | Roberto Ierusalimschy | 2005-08-15 | 1 | -3/+20 |
| | |||||
* | searchpath is "private affair" of loadlib | Roberto Ierusalimschy | 2005-07-13 | 1 | -4/+1 |
| | |||||
* | lua_objsize -> lua_objlen (more compatible with use of `lenĀ“ in other | Roberto Ierusalimschy | 2005-05-31 | 1 | -2/+2 |
| | | | | places [opcode name, metamethod index, etc.]) | ||||
* | warnings in VS .Net | Roberto Ierusalimschy | 2005-05-31 | 1 | -2/+2 |
| | |||||
* | luaL_findstring -> luaL_checkoption | Roberto Ierusalimschy | 2005-05-25 | 1 | -2/+3 |
| | |||||
* | better use defined/undefined as flag values for macros | Roberto Ierusalimschy | 2005-05-20 | 1 | -2/+2 |
| | |||||
* | better control for compatibility code | Roberto Ierusalimschy | 2005-03-29 | 1 | -1/+7 |
| | |||||
* | all function declarations surround name with parentheses | Roberto Ierusalimschy | 2005-01-10 | 1 | -43/+46 |
| | |||||
* | use of parentheses around macro parameters in call lists, to avoid | Roberto Ierusalimschy | 2004-10-18 | 1 | -8/+8 |
| | | | | problems with comma expressions | ||||
* | better API for luaL_getfield/setfield | Roberto Ierusalimschy | 2004-09-29 | 1 | -3/+3 |
| | |||||
* | new auxiliary functions to implement new package system | Roberto Ierusalimschy | 2004-09-21 | 1 | -1/+7 |
| | |||||
* | new macro `luaL_typename' | Roberto Ierusalimschy | 2004-07-09 | 1 | -1/+2 |
| | |||||
* | detail | Roberto Ierusalimschy | 2004-06-30 | 1 | -3/+1 |
| | |||||
* | new interface for search-path function | Roberto Ierusalimschy | 2004-06-29 | 1 | -4/+4 |
| |