| Commit message (Expand) | Author | Age | Files | Lines |
* | better(?) implementation for 'pcall'/'xpcall' (regarding the insertion | Roberto Ierusalimschy | 2014-05-16 | 1 | -20/+35 |
* | more direct implementation of 'table.pack' | Roberto Ierusalimschy | 2014-05-16 | 1 | -10/+6 |
* | small changes in field order in some structs to reduce padding | Roberto Ierusalimschy | 2014-05-15 | 2 | -14/+14 |
* | removed macro 'luai_checknum' (as NaN trick is not doable now) | Roberto Ierusalimschy | 2014-05-15 | 2 | -8/+2 |
* | added a few comments | Roberto Ierusalimschy | 2014-05-15 | 1 | -1/+14 |
* | deprecated library throws an error if called (instead of silently | Roberto Ierusalimschy | 2014-05-15 | 2 | -6/+7 |
* | added lots of new comments + small changes in code | Roberto Ierusalimschy | 2014-05-15 | 1 | -61/+94 |
* | 'LUA_COMPAT_ALL' -> 'LUA_COMPAT_5_1'/'LUA_COMPAT_5_2' + "@*" in | Roberto Ierusalimschy | 2014-05-15 | 1 | -18/+39 |
* | avoid non-conformant pointer arithmetic in api check for 'lua_rotate' | Roberto Ierusalimschy | 2014-05-15 | 1 | -3/+3 |
* | using a more conventional handling of stack space in 'io_readline' | Roberto Ierusalimschy | 2014-05-15 | 1 | -3/+2 |
* | added a compat option (although it will be off by default) to | Roberto Ierusalimschy | 2014-05-14 | 1 | -1/+3 |
* | missing macro 'LUAMOD_API' in function to open library | Roberto Ierusalimschy | 2014-05-14 | 1 | -2/+2 |
* | function 'reverse' uses appropriate variants of 'setobj' for better | Roberto Ierusalimschy | 2014-05-14 | 1 | -3/+3 |
* | several functions deprecated (cosh, sinh, atanh, pow, frexp, ldexp) | Roberto Ierusalimschy | 2014-05-14 | 1 | -66/+72 |
* | comments added to 'lua_rotate' | Roberto Ierusalimschy | 2014-05-14 | 1 | -7/+11 |
* | new API function 'lua_rotate' | Roberto Ierusalimschy | 2014-05-13 | 4 | -26/+36 |
* | addition of '.0' to float representation done by the kernel | Roberto Ierusalimschy | 2014-05-12 | 3 | -13/+18 |
* | no more integer exponentiation | Roberto Ierusalimschy | 2014-05-12 | 3 | -30/+6 |
* | added comments to several functions | Roberto Ierusalimschy | 2014-05-12 | 1 | -55/+93 |
* | old POSIX systems need '<sys/types.h>' for 'off_t' | Roberto Ierusalimschy | 2014-05-11 | 1 | -1/+3 |
* | better error message for unfinished long strings/comments | Roberto Ierusalimschy | 2014-05-11 | 1 | -4/+8 |
* | comments | Roberto Ierusalimschy | 2014-05-11 | 1 | -3/+6 |
* | in 'for' loops, make the limit an integer whenever initial value and | Roberto Ierusalimschy | 2014-05-09 | 1 | -3/+40 |
* | 'T.totalmem' accepts 0 for unlimited memory | Roberto Ierusalimschy | 2014-05-08 | 1 | -3/+5 |
* | comments | Roberto Ierusalimschy | 2014-05-08 | 1 | -5/+6 |
* | new function 'lua_isyieldable' (and 'coroutine.isyieldable') | Roberto Ierusalimschy | 2014-05-08 | 3 | -7/+26 |
* | updated several 'fix' fields | Roberto Ierusalimschy | 2014-05-07 | 1 | -15/+13 |
* | marks for releases 5.2.2 and 5.2.3 + correction in last bug's description | Roberto Ierusalimschy | 2014-05-07 | 1 | -3/+13 |
* | better alignments (for 64-bit arquitectures) for structures 'Table' and | Roberto Ierusalimschy | 2014-05-07 | 1 | -4/+4 |
* | 'math.fmod' handles integers as integers | Roberto Ierusalimschy | 2014-05-02 | 1 | -4/+14 |
* | 'lua_getuservalue' returns type of user value | Roberto Ierusalimschy | 2014-05-01 | 2 | -4/+5 |
* | 'lua_strtonum' (and 'luaO_str2num') now return string size, instead of | Roberto Ierusalimschy | 2014-05-01 | 7 | -41/+39 |
* | function 'limittointeger' no needed (now that 'tointeger_aux' handles | Roberto Ierusalimschy | 2014-04-30 | 1 | -16/+2 |
* | debug.numbits replaced by debug.Csize | Roberto Ierusalimschy | 2014-04-30 | 1 | -11/+25 |
* | 'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' plus proper | Roberto Ierusalimschy | 2014-04-30 | 1 | -22/+46 |
* | 'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' (which converts | Roberto Ierusalimschy | 2014-04-30 | 4 | -44/+50 |
* | merge of common parts from 'limittointeger' and 'luaV_tointeger_' | Roberto Ierusalimschy | 2014-04-29 | 1 | -10/+15 |
* | 'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue') | Roberto Ierusalimschy | 2014-04-29 | 6 | -27/+27 |
* | 'for' loop tries to convert limit to integer when initial value and | Roberto Ierusalimschy | 2014-04-29 | 1 | -2/+23 |
* | template for 'mkstemp' is configurable (via LUA_TMPNAMTEMPLATE) | Roberto Ierusalimschy | 2014-04-29 | 1 | -2/+8 |
* | using lua_Unsigned (instead of lua_Integer) for bit manipulation | Roberto Ierusalimschy | 2014-04-27 | 1 | -7/+8 |
* | n^-m gives float result (instead of error) | Roberto Ierusalimschy | 2014-04-27 | 4 | -17/+15 |
* | 'math.random(n,m)' interval restricted in size, to avoid using conversion | Roberto Ierusalimschy | 2014-04-17 | 1 | -8/+12 |
* | comment | Roberto Ierusalimschy | 2014-04-17 | 1 | -3/+3 |
* | back to larger sizes for 'dumpint/undumpint' (small Lua should | Roberto Ierusalimschy | 2014-04-16 | 1 | -13/+39 |
* | correct integer limits for Windows + small adjustments for short | Roberto Ierusalimschy | 2014-04-16 | 1 | -3/+14 |
* | keep 'luaL_checkversion_' with its signature in version 5.2, for | Roberto Ierusalimschy | 2014-04-15 | 2 | -5/+5 |
* | initial '*' in 'io.read' formats is deprecated | Roberto Ierusalimschy | 2014-04-15 | 1 | -4/+4 |
* | cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable from | Roberto Ierusalimschy | 2014-04-15 | 6 | -19/+23 |
* | macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, that | Roberto Ierusalimschy | 2014-04-15 | 7 | -25/+33 |