Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new macro 'l_tvar' to easy the use of mathlib with other floating | Roberto Ierusalimschy | 2010-11-11 | 1 | -28/+39 |
| | | | | types (float and long double) | ||||
* | allows larger array parts in tables (no need to restrict it to 2^26) | Roberto Ierusalimschy | 2010-11-11 | 1 | -3/+3 |
| | |||||
* | no more sentinel to detect loops in module dependencies; | Roberto Ierusalimschy | 2010-11-10 | 1 | -12/+3 |
| | | | | usual message for infinite recursion is good enough. | ||||
* | better error message when light userdata is used instead of a | Roberto Ierusalimschy | 2010-11-10 | 1 | -3/+10 |
| | | | | full userdata | ||||
* | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 2010-11-10 | 4 | -8/+13 |
| | |||||
* | 'luaL_typeerror' deprecated | Roberto Ierusalimschy | 2010-11-10 | 3 | -10/+6 |
| | |||||
* | when reading blocks with given size, try to read whole block | Roberto Ierusalimschy | 2010-11-09 | 1 | -17/+24 |
| | | | | at once | ||||
* | detail (message) | Roberto Ierusalimschy | 2010-11-09 | 1 | -2/+2 |
| | |||||
* | added support for conditional use of %Lg when using long double | Roberto Ierusalimschy | 2010-11-08 | 1 | -8/+25 |
| | |||||
* | when reading large files, double buffer size at each iteration | Roberto Ierusalimschy | 2010-11-08 | 1 | -4/+10 |
| | |||||
* | code should not use "defined" types, but "typedef"s types when they | Roberto Ierusalimschy | 2010-11-08 | 1 | -10/+11 |
| | | | | | | are available (i.e., after including lua.h) + small changes to make conversions more portable across diferent types for lua_Number (long double) and lua_Unsigned (long long unsigned) | ||||
* | correction to allow lua_Unsigned larger than usigned int | Roberto Ierusalimschy | 2010-11-08 | 1 | -2/+2 |
| | |||||
* | code for conversion macros moved from luaconf to llimits + 'uint' | Roberto Ierusalimschy | 2010-11-03 | 3 | -103/+101 |
| | | | | renamed to 'unsigned' in those macros | ||||
* | comment typos | Roberto Ierusalimschy | 2010-10-29 | 4 | -9/+9 |
| | |||||
* | bug: by-one error when creating short source names (luaO_chunkid) | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 |
| | |||||
* | detail (ununsed parameter) | Roberto Ierusalimschy | 2010-10-29 | 1 | -3/+3 |
| | |||||
* | 'luaL_checkversion' also checks convertions (number to integer types) | Roberto Ierusalimschy | 2010-10-29 | 1 | -1/+8 |
| | |||||
* | added another option for ieeeendian | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 |
| | |||||
* | comment typo | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 |
| | |||||
* | more robust implementation for 'luaO_str2d' | Roberto Ierusalimschy | 2010-10-28 | 1 | -6/+11 |
| | |||||
* | correct handling of negative numbers in non-10 bases by 'tonumber' | Roberto Ierusalimschy | 2010-10-28 | 1 | -2/+5 |
| | | | | (e.g., tonumber(-34, 8)) | ||||
* | added more platforms for ieeeendianess + small comments | Roberto Ierusalimschy | 2010-10-28 | 1 | -4/+7 |
| | |||||
* | stricter control over number of bits in each operation | Roberto Ierusalimschy | 2010-10-28 | 1 | -12/+20 |
| | |||||
* | added check for architectures with known endianess (only i386 now) | Roberto Ierusalimschy | 2010-10-27 | 1 | -1/+5 |
| | |||||
* | new names for bit functions (mimicking assembler) | Roberto Ierusalimschy | 2010-10-27 | 1 | -11/+11 |
| | |||||
* | better organization for coercion functions between lua_Number and | Roberto Ierusalimschy | 2010-10-26 | 2 | -30/+70 |
| | | | | integer types + IEEE trick to be used in most platforms, by default | ||||
* | new type lua_Unsigned and corresponding projection/injection functions | Roberto Ierusalimschy | 2010-10-25 | 6 | -22/+66 |
| | |||||
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 9 | -22/+21 |
| | | | | details) | ||||
* | version from lhf | Roberto Ierusalimschy | 2010-10-25 | 2 | -35/+20 |
| | |||||
* | bitlib renamed to 'bit32' + new function for arithmetic shift | Roberto Ierusalimschy | 2010-10-25 | 3 | -11/+26 |
| | |||||
* | POS_A replaced by POS_Ax (which is more "precise") | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 |
| | |||||
* | comment | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 |
| | |||||
* | better error message for 'lua -e -i' | Roberto Ierusalimschy | 2010-10-18 | 1 | -5/+6 |
| | |||||
* | details in opcode list | Roberto Ierusalimschy | 2010-10-13 | 2 | -6/+7 |
| | |||||
* | 'proto->source' may be NULL (if dump strips debug information) | Roberto Ierusalimschy | 2010-10-11 | 1 | -5/+11 |
| | |||||
* | 'os.exit' acceps booleans as status (for EXIT_SUCESS and EXIT_FAILURE) | Roberto Ierusalimschy | 2010-10-05 | 1 | -2/+6 |
| | |||||
* | 'luaL_loadlib' accepts Utf8 BOM in the beginning of files | Roberto Ierusalimschy | 2010-10-01 | 1 | -13/+26 |
| | |||||
* | 'nresults' in CallInfo now refers to number of results that the current | Roberto Ierusalimschy | 2010-09-30 | 2 | -5/+6 |
| | | | | function returns (and not what it expects from a call) | ||||
* | hexadecimal constants may be floating values too | Roberto Ierusalimschy | 2010-09-13 | 1 | -6/+4 |
| | |||||
* | '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. | ||||
* | 'lua_[gs]etupvalue' may work even without debug information | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+6 |
| | | | | (that is, without upvalue names) | ||||
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 7 | -15/+23 |
| | |||||
* | new parameter 'majorinc' to control frequency of major collections | Roberto Ierusalimschy | 2010-09-03 | 6 | -13/+25 |
| | | | | 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' | ||||
* | 'pushclosure' -> 'codeclosure' (as there is another 'pushclosure' in | Roberto Ierusalimschy | 2010-08-23 | 1 | -8/+13 |
| | | | | 'lvm.c) + small detail | ||||
* | api checks to ensure that thread is OK when using lua_call/lua_pcall | Roberto Ierusalimschy | 2010-08-04 | 1 | -1/+3 |
| | |||||
* | use index 0 for header of list of free references | Roberto Ierusalimschy | 2010-08-03 | 1 | -7/+7 |
| | |||||
* | detail: registry._PRELOAD must be a table, no need to check | Roberto Ierusalimschy | 2010-08-02 | 1 | -3/+1 |
| | |||||
* | 'module'/'luaL_register' and associates are deprecated | Roberto Ierusalimschy | 2010-07-28 | 6 | -14/+33 |
| | |||||
* | several new comments | Roberto Ierusalimschy | 2010-07-26 | 1 | -27/+43 |
| |