Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-11-22 | 'test' -> 'btest' | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-11-22 | conventional names for bitwise operators | Roberto Ierusalimschy | 1 | -13/+13 | |
2010-11-19 | 'gfind' was deprecated in 5.1 | Roberto Ierusalimschy | 1 | -8/+1 | |
2010-11-18 | keep 'seminfo->ts' even for reserved words, just in case | Roberto Ierusalimschy | 1 | -2/+2 | |
(some lhf's tools need this) | |||||
2010-11-18 | avoid "unreacheable code" warnings | Roberto Ierusalimschy | 1 | -4/+5 | |
2010-11-16 | small bug: 'find' did not detect magic chars after a \0 in a pattern | Roberto Ierusalimschy | 1 | -3/+15 | |
and did a plain search in those cases | |||||
2010-11-16 | comment about compatibility-only functions | Roberto Ierusalimschy | 1 | -3/+5 | |
2010-11-16 | 'getuservalue' accepts any type of argument | Roberto Ierusalimschy | 1 | -11/+8 | |
2010-11-16 | no more compatibility with (veryyyy) old ref system | Roberto Ierusalimschy | 2 | -23/+9 | |
2010-11-16 | -DLUA_COMPAT_ALL is the default | Roberto Ierusalimschy | 1 | -1/+1 | |
2010-11-12 | 'debug' library is loaded by default | Roberto Ierusalimschy | 2 | -18/+7 | |
2010-11-12 | 'l_tvar' renamed to 'l_tg' | Roberto Ierusalimschy | 1 | -32/+31 | |
2010-11-11 | new macro 'l_tvar' to easy the use of mathlib with other floating | Roberto Ierusalimschy | 1 | -28/+39 | |
types (float and long double) | |||||
2010-11-11 | allows larger array parts in tables (no need to restrict it to 2^26) | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-11-10 | no more sentinel to detect loops in module dependencies; | Roberto Ierusalimschy | 1 | -12/+3 | |
usual message for infinite recursion is good enough. | |||||
2010-11-10 | better error message when light userdata is used instead of a | Roberto Ierusalimschy | 1 | -3/+10 | |
full userdata | |||||
2010-11-10 | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 4 | -8/+13 | |
2010-11-10 | 'luaL_typeerror' deprecated | Roberto Ierusalimschy | 3 | -10/+6 | |
2010-11-09 | when reading blocks with given size, try to read whole block | Roberto Ierusalimschy | 1 | -17/+24 | |
at once | |||||
2010-11-09 | detail (message) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-11-08 | added support for conditional use of %Lg when using long double | Roberto Ierusalimschy | 1 | -8/+25 | |
2010-11-08 | when reading large files, double buffer size at each iteration | Roberto Ierusalimschy | 1 | -4/+10 | |
2010-11-08 | code should not use "defined" types, but "typedef"s types when they | Roberto Ierusalimschy | 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) | |||||
2010-11-08 | correction to allow lua_Unsigned larger than usigned int | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-11-03 | code for conversion macros moved from luaconf to llimits + 'uint' | Roberto Ierusalimschy | 3 | -103/+101 | |
renamed to 'unsigned' in those macros | |||||
2010-10-29 | comment typos | Roberto Ierusalimschy | 4 | -9/+9 | |
2010-10-29 | bug: by-one error when creating short source names (luaO_chunkid) | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-10-29 | detail (ununsed parameter) | Roberto Ierusalimschy | 1 | -3/+3 | |
2010-10-29 | 'luaL_checkversion' also checks convertions (number to integer types) | Roberto Ierusalimschy | 1 | -1/+8 | |
2010-10-29 | added another option for ieeeendian | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-10-29 | comment typo | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-10-28 | more robust implementation for 'luaO_str2d' | Roberto Ierusalimschy | 1 | -6/+11 | |
2010-10-28 | correct handling of negative numbers in non-10 bases by 'tonumber' | Roberto Ierusalimschy | 1 | -2/+5 | |
(e.g., tonumber(-34, 8)) | |||||
2010-10-28 | added more platforms for ieeeendianess + small comments | Roberto Ierusalimschy | 1 | -4/+7 | |
2010-10-28 | stricter control over number of bits in each operation | Roberto Ierusalimschy | 1 | -12/+20 | |
2010-10-27 | added check for architectures with known endianess (only i386 now) | Roberto Ierusalimschy | 1 | -1/+5 | |
2010-10-27 | new names for bit functions (mimicking assembler) | Roberto Ierusalimschy | 1 | -11/+11 | |
2010-10-26 | better organization for coercion functions between lua_Number and | Roberto Ierusalimschy | 2 | -30/+70 | |
integer types + IEEE trick to be used in most platforms, by default | |||||
2010-10-25 | new type lua_Unsigned and corresponding projection/injection functions | Roberto Ierusalimschy | 6 | -22/+66 | |
2010-10-25 | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 9 | -22/+21 | |
details) | |||||
2010-10-25 | version from lhf | Roberto Ierusalimschy | 2 | -35/+20 | |
2010-10-25 | bitlib renamed to 'bit32' + new function for arithmetic shift | Roberto Ierusalimschy | 3 | -11/+26 | |
2010-10-25 | POS_A replaced by POS_Ax (which is more "precise") | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-10-25 | comment | Roberto Ierusalimschy | 1 | -2/+2 | |
2010-10-18 | better error message for 'lua -e -i' | Roberto Ierusalimschy | 1 | -5/+6 | |
2010-10-13 | details in opcode list | Roberto Ierusalimschy | 2 | -6/+7 | |
2010-10-11 | 'proto->source' may be NULL (if dump strips debug information) | Roberto Ierusalimschy | 1 | -5/+11 | |
2010-10-05 | 'os.exit' acceps booleans as status (for EXIT_SUCESS and EXIT_FAILURE) | Roberto Ierusalimschy | 1 | -2/+6 | |
2010-10-01 | 'luaL_loadlib' accepts Utf8 BOM in the beginning of files | Roberto Ierusalimschy | 1 | -13/+26 | |
2010-09-30 | 'nresults' in CallInfo now refers to number of results that the current | Roberto Ierusalimschy | 2 | -5/+6 | |
function returns (and not what it expects from a call) |