Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 'luaO_str2int' more generic: accepts white spaces around the numeral | Roberto Ierusalimschy | 2013-05-14 | 3 | -15/+27 | |
| | | | | and handles signal | |||||
* | new read format "*i" for reading integers | Roberto Ierusalimschy | 2013-05-14 | 1 | -1/+17 | |
| | ||||||
* | uses integers for time | Roberto Ierusalimschy | 2013-05-14 | 1 | -5/+5 | |
| | ||||||
* | bug: Wrong error message in some short-cut expressions | Roberto Ierusalimschy | 2013-05-13 | 1 | -2/+18 | |
| | ||||||
* | 'pushnum' pushes a "number" (float) + new C instruction 'pushint' | Roberto Ierusalimschy | 2013-05-07 | 1 | -1/+4 | |
| | ||||||
* | new function 'math.numbits' (not a final decision) | Roberto Ierusalimschy | 2013-05-06 | 1 | -1/+15 | |
| | ||||||
* | correct way to avoid compile-time errors in integer divisions | Roberto Ierusalimschy | 2013-05-06 | 1 | -4/+7 | |
| | ||||||
* | correct error message for conversion errors from float to int | Roberto Ierusalimschy | 2013-05-06 | 3 | -12/+26 | |
| | ||||||
* | bug: Wrong assert when reporting concatenation errors. | Roberto Ierusalimschy | 2013-05-06 | 1 | -2/+25 | |
| | ||||||
* | macro 'nvalue' removed (direct conversion from integer to double, | Roberto Ierusalimschy | 2013-05-06 | 1 | -4/+1 | |
| | | | | without an intermediate variable, can cause "excessive precision" | |||||
* | macro 'nvalue' removed + cast to void added to avoid warnings | Roberto Ierusalimschy | 2013-05-06 | 1 | -5/+8 | |
| | | | | with 'clang' | |||||
* | new function 'math.isfloat' | Roberto Ierusalimschy | 2013-05-02 | 1 | -1/+8 | |
| | ||||||
* | stack overflow in vararg functions + garbage collector in recursive loops | Roberto Ierusalimschy | 2013-05-02 | 1 | -7/+70 | |
| | ||||||
* | constant folding and API arithmetic with integers | Roberto Ierusalimschy | 2013-05-02 | 4 | -31/+83 | |
| | ||||||
* | new macro 'intop' (to perform integer arithmetic on unsigned types) | Roberto Ierusalimschy | 2013-05-02 | 2 | -10/+11 | |
| | ||||||
* | new function 'tointeger' + 'luaV_arith' replaced by 'luaT_trybinTM' | Roberto Ierusalimschy | 2013-04-29 | 4 | -100/+70 | |
| | ||||||
* | integer division operates only on integers | Roberto Ierusalimschy | 2013-04-29 | 1 | -2/+1 | |
| | ||||||
* | added 'const' to parameters of 'luaG_concaterror' | Roberto Ierusalimschy | 2013-04-29 | 2 | -4/+5 | |
| | ||||||
* | 'luaO_arith' -> 'luaO_numarith' | Roberto Ierusalimschy | 2013-04-29 | 3 | -6/+6 | |
| | ||||||
* | new function 'luaT_trybinTM' | Roberto Ierusalimschy | 2013-04-29 | 2 | -2/+16 | |
| | ||||||
* | favoring 'tonumber' over 'nvalue' | Roberto Ierusalimschy | 2013-04-26 | 2 | -34/+30 | |
| | ||||||
* | dumping and undumping integers | Roberto Ierusalimschy | 2013-04-26 | 2 | -9/+27 | |
| | ||||||
* | bug: garbage collector can trigger too many times in recursive loops, | Roberto Ierusalimschy | 2013-04-26 | 1 | -3/+10 | |
| | | | | because it was not computing the size of CallInfo structures in threads | |||||
* | detail | Roberto Ierusalimschy | 2013-04-26 | 1 | -3/+3 | |
| | ||||||
* | new interface for 'tonumber' | Roberto Ierusalimschy | 2013-04-26 | 4 | -39/+34 | |
| | ||||||
* | "integer" keys in tables are now lua_Integer, not 'int'. | Roberto Ierusalimschy | 2013-04-26 | 4 | -24/+29 | |
| | ||||||
* | new operation '//' (integer division) | Roberto Ierusalimschy | 2013-04-26 | 14 | -27/+56 | |
| | ||||||
* | new cast macros for lua_Integer and lua_Unsigned | Roberto Ierusalimschy | 2013-04-25 | 1 | -1/+3 | |
| | ||||||
* | 'for' loop uses integers when possible | Roberto Ierusalimschy | 2013-04-25 | 1 | -16/+33 | |
| | ||||||
* | default increment for 'for' loop is an integer (1, not 1.0) | Roberto Ierusalimschy | 2013-04-25 | 3 | -7/+7 | |
| | ||||||
* | integer handling for order comparisons, power, and modulo operations | Roberto Ierusalimschy | 2013-04-25 | 2 | -6/+83 | |
| | ||||||
* | functions 'get_equalTM' and 'call_orderTM' moved to other files | Roberto Ierusalimschy | 2013-04-25 | 3 | -31/+36 | |
| | | | | to make 'lvm.c' smaller | |||||
* | functions 'traceexec', 'callTM', and 'call_binTM' moved to other | Roberto Ierusalimschy | 2013-04-25 | 5 | -75/+83 | |
| | | | | files to make 'lvm.c' a little smaller | |||||
* | new format "%I" in 'lua_pushfstring' for lua_Integer | Roberto Ierusalimschy | 2013-04-25 | 2 | -3/+20 | |
| | ||||||
* | new API function 'lua_isinteger' | Roberto Ierusalimschy | 2013-04-25 | 2 | -2/+9 | |
| | ||||||
* | more definitions to support integer formatting | Roberto Ierusalimschy | 2013-04-25 | 2 | -66/+36 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2013-04-24 | 1 | -2/+2 | |
| | ||||||
* | BUG: stack overflow in vararg functions with many fixed | Roberto Ierusalimschy | 2013-04-19 | 1 | -4/+11 | |
| | | | | parameters called with few arguments | |||||
* | first implementation of literal integers (no constant folding yet) | Roberto Ierusalimschy | 2013-04-16 | 7 | -37/+98 | |
| | ||||||
* | a few more operations supporting integers (minus, umin, mult) | Roberto Ierusalimschy | 2013-04-16 | 1 | -13/+47 | |
| | ||||||
* | extra trim applied to 'replace' argument (in case lua_Unsigned is | Roberto Ierusalimschy | 2013-04-16 | 1 | -6/+8 | |
| | | | | larger than 32 bits) | |||||
* | first steps in the support of integers: basic representation + table ↵ | Roberto Ierusalimschy | 2013-04-15 | 4 | -158/+87 | |
| | | | | indexing + basic API ops (tointeger/pushinteger) + equality + a few extra stuff | |||||
* | (no commit message) | Roberto Ierusalimschy | 2013-04-15 | 2 | -9/+12 | |
| | ||||||
* | dependencies updated (with 'gcc -MM') | Roberto Ierusalimschy | 2013-04-15 | 1 | -2/+2 | |
| | ||||||
* | 'ttypenv' -> 'ttnov' | Roberto Ierusalimschy | 2013-04-12 | 6 | -21/+21 | |
| | ||||||
* | _FILE_OFFSET_BITS usually also needs _LARGEFILE_SOURCE + easier to | Roberto Ierusalimschy | 2013-04-11 | 1 | -11/+12 | |
| | | | | use default definition for 'l_fseek' in ansi systems | |||||
* | logic for checking mode for 'fopen' moved to macro 'lua_checkmode'v5.2.2 | Roberto Ierusalimschy | 2013-03-21 | 1 | -10/+11 | |
| | ||||||
* | detail (avoid unnecessary "unconst" in cast) | Roberto Ierusalimschy | 2013-03-21 | 1 | -2/+2 | |
| | ||||||
* | detail (error message) | Roberto Ierusalimschy | 2013-03-20 | 1 | -3/+2 | |
| | ||||||
* | detail (avoiding warnings) | Roberto Ierusalimschy | 2013-03-19 | 1 | -3/+5 | |
| |