| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 'numisinteger' (for table keys) replaced by 'luaV_tointeger' (old | Roberto Ierusalimschy | 2015-02-20 | 1 | -17/+5 |
* | make 'hashfloat' configurable | Roberto Ierusalimschy | 2015-02-20 | 1 | -8/+8 |
* | detail (file does not need 'string.h') | Roberto Ierusalimschy | 2015-02-16 | 1 | -2/+1 |
* | some changes in 'hashfloat' to avoid undefined (in ISO C) numerical | Roberto Ierusalimschy | 2015-02-13 | 1 | -8/+21 |
* | size of short strings stored in a single byte, to reduce the size | Roberto Ierusalimschy | 2015-01-16 | 1 | -2/+2 |
* | 'setkey' -> 'setnodekey' (to avoid conflicts with POSIX)v5.3.0 | Roberto Ierusalimschy | 2015-01-05 | 1 | -2/+2 |
* | added include for 'lprefix.h', for stuff that must be added before | Roberto Ierusalimschy | 2014-11-02 | 1 | -4/+6 |
* | `name' in comments changed to 'name' | Roberto Ierusalimschy | 2014-10-25 | 1 | -18/+18 |
* | 'lua_numtointeger' -> 'lua_numbertointeger' | Roberto Ierusalimschy | 2014-10-24 | 1 | -2/+2 |
* | macros 'LUA_QL'/'LUA_QL' deprecated | Roberto Ierusalimschy | 2014-10-17 | 1 | -2/+2 |
* | size for array part of a table ('sizearray') changed from 'int' to | Roberto Ierusalimschy | 2014-09-04 | 1 | -59/+75 |
* | details in comments | Roberto Ierusalimschy | 2014-08-01 | 1 | -2/+2 |
* | simpler definition for 'setobj' (trust the compiler for the assignment) | Roberto Ierusalimschy | 2014-07-29 | 1 | -4/+5 |
* | type 'TString' refers directly to the structure inside the union | Roberto Ierusalimschy | 2014-07-18 | 1 | -11/+11 |
* | 'IntPoint' -> 'point2int' + ensure that casted value fits in | Roberto Ierusalimschy | 2014-06-26 | 1 | -2/+2 |
* | use appropriate macros to convert GCObject to specific types | Roberto Ierusalimschy | 2014-06-18 | 1 | -2/+3 |
* | function 'luaV_numtointeger' changed to a global macro | Roberto Ierusalimschy | 2014-05-26 | 1 | -8/+13 |
* | cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable from | Roberto Ierusalimschy | 2014-04-15 | 1 | -2/+2 |
* | macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, that | Roberto Ierusalimschy | 2014-04-15 | 1 | -2/+2 |
* | maximum size of array part of a table now is restricted not only by | Roberto Ierusalimschy | 2014-04-13 | 1 | -8/+8 |
* | some details to avoid warnings | Roberto Ierusalimschy | 2014-04-01 | 1 | -5/+5 |
* | no more 'L' in macros "luai_num*" (several places that use those macros | Roberto Ierusalimschy | 2014-01-27 | 1 | -2/+2 |
* | 'luaC_newobj' does not handle special cases; only special case | Roberto Ierusalimschy | 2013-09-11 | 1 | -2/+2 |
* | details (a few casts moved from macro invocation to macro definition) | Roberto Ierusalimschy | 2013-08-29 | 1 | -2/+2 |
* | tables and userdata all go to local list, too | Roberto Ierusalimschy | 2013-08-28 | 1 | -2/+2 |
* | LOCALBLACK changed to LOCALMARK and used also to control whether object | Roberto Ierusalimschy | 2013-08-27 | 1 | -2/+2 |
* | 'next' field for tables changed from pointer to integer (for better | Roberto Ierusalimschy | 2013-08-18 | 1 | -24/+44 |
* | new macro 'l_floor' (allows 'floorf' even when other math operations | Roberto Ierusalimschy | 2013-06-20 | 1 | -2/+2 |
* | 'luai_hashnum' "inlined" into 'hashfloat' | Roberto Ierusalimschy | 2013-05-29 | 1 | -5/+8 |
* | "legal" way to convert a float to an integer in C | Roberto Ierusalimschy | 2013-05-27 | 1 | -3/+9 |
* | new function 'tointeger' + 'luaV_arith' replaced by 'luaT_trybinTM' | Roberto Ierusalimschy | 2013-04-29 | 1 | -14/+3 |
* | "integer" keys in tables are now lua_Integer, not 'int'. | Roberto Ierusalimschy | 2013-04-26 | 1 | -15/+19 |
* | first steps in the support of integers: basic representation + table indexing... | Roberto Ierusalimschy | 2013-04-15 | 1 | -24/+39 |
* | detail | Roberto Ierusalimschy | 2012-09-11 | 1 | -3/+3 |
* | spaces -> tabs in #defines | Roberto Ierusalimschy | 2012-05-23 | 1 | -3/+3 |
* | random seed used in the hash of all strings to avoid intentional | Roberto Ierusalimschy | 2012-02-01 | 1 | -2/+2 |
* | first implementation of long strings | Roberto Ierusalimschy | 2012-01-25 | 1 | -6/+15 |
* | 'eqstr' -> 'luaS_eqstr' | Roberto Ierusalimschy | 2012-01-23 | 1 | -2/+2 |
* | avoid 'return' "to avoid warnings" | Roberto Ierusalimschy | 2011-11-30 | 1 | -5/+5 |
* | avoid some warnings about converting 32-bit shifts into 64-bit results | Roberto Ierusalimschy | 2011-11-28 | 1 | -3/+3 |
* | lint (unused definition) | Roberto Ierusalimschy | 2011-09-30 | 1 | -8/+1 |
* | dead objects are not collectable. | Roberto Ierusalimschy | 2011-09-24 | 1 | -2/+2 |
* | cannot compute 'mainposition' before checking whether key is nil | Roberto Ierusalimschy | 2011-09-15 | 1 | -2/+3 |
* | bug: __newindex metamethod may not work if metatable is its own | Roberto Ierusalimschy | 2011-08-17 | 1 | -12/+17 |
* | no more 'luaH_setstr (used only once) + 'luaH_setint' receives value | Roberto Ierusalimschy | 2011-08-09 | 1 | -17/+7 |
* | avoid warning about -unsigned value | Roberto Ierusalimschy | 2011-06-16 | 1 | -2/+2 |
* | avoid warnings with -Wstrict-overflow | Roberto Ierusalimschy | 2011-06-09 | 1 | -3/+4 |
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -2/+2 |
* | more uniform names for 'equalobj'-related functions | Roberto Ierusalimschy | 2011-05-31 | 1 | -3/+3 |
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -3/+4 |