Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | LUA_COMPAT_5_1 needs some options deprecated from 5.2 to 5.3 | Roberto Ierusalimschy | 2015-02-28 | 1 | -10/+14 | |
| | ||||||
* | macros 'luai_num*' (for float arithmetic operations) moved to | Roberto Ierusalimschy | 2015-02-05 | 1 | -41/+1 | |
| | | | | llimits.h. | |||||
* | added comments documenting LUA_NOCVTN2S/LUA_NOCVTS2N | Roberto Ierusalimschy | 2015-02-05 | 1 | -1/+19 | |
| | ||||||
* | own implementation for 'string.format("%a")' for C89 platforms | Roberto Ierusalimschy | 2015-02-04 | 1 | -8/+8 | |
| | ||||||
* | LUAL_BUFFERSIZE affects the API, so it is better not to change it | Roberto Ierusalimschy | 2015-01-16 | 1 | -2/+3 | |
| | | | | | | between releases of the same version. (The long double case seems to be too rare, so that should not be a problem; moreover, that case is related to a bug) | |||||
* | LUAI_MAXSHORTLEN moved from 'luaconf.h' to 'llimits.h' (does not | Roberto Ierusalimschy | 2015-01-16 | 1 | -10/+1 | |
| | | | | affect the API and is seldom modified) | |||||
* | removed macro LUAI_FIRSTPSEUDOIDX (that stuff does not need | Roberto Ierusalimschy | 2015-01-13 | 1 | -4/+1 | |
| | | | | to be configurable) | |||||
* | Long double needs a larger LUAL_BUFFERSIZE (because | Roberto Ierusalimschy | 2015-01-13 | 1 | -3/+10 | |
| | | | | | 'string.format("%.99f", 1e4900)' can generate quite long strings), but otherwise buffer can be 1~2K | |||||
* | detail (macro 'luai_numidiv' uses 'luai_numdiv' to compute the division) | Roberto Ierusalimschy | 2014-12-29 | 1 | -2/+2 | |
| | ||||||
* | removed macro 'luai_numinvalidop' (main motivation removed, as folding | Roberto Ierusalimschy | 2014-12-26 | 1 | -9/+1 | |
| | | | | does not handle any division by zero by default) | |||||
* | comment | Roberto Ierusalimschy | 2014-12-19 | 1 | -2/+2 | |
| | ||||||
* | Windows uses 'long long' (instead of '__int64') when present; again, | Roberto Ierusalimschy | 2014-12-16 | 1 | -15/+15 | |
| | | | | uses macro LLONG_MAX as a proxy for the support for 'long long'. | |||||
* | added macro LUA_USE_I64 for separate control of use of Windows-specific | Roberto Ierusalimschy | 2014-12-16 | 1 | -2/+3 | |
| | | | | types | |||||
* | comments | Roberto Ierusalimschy | 2014-12-13 | 1 | -11/+11 | |
| | ||||||
* | reinsertion-control macro renamed: lconfig_h -> luaconf_h | Roberto Ierusalimschy | 2014-12-12 | 1 | -3/+3 | |
| | ||||||
* | macro 'LUA_C89_NUMBERS' makes a little easier to use C89 numerical types | Roberto Ierusalimschy | 2014-12-10 | 1 | -37/+25 | |
| | ||||||
* | details (comments) | Roberto Ierusalimschy | 2014-11-25 | 1 | -6/+5 | |
| | ||||||
* | 'x//y' extended to floats + more comments about module and floor | Roberto Ierusalimschy | 2014-11-21 | 1 | -2/+16 | |
| | | | | division operations | |||||
* | detail (LUAL_BUFFERSIZE has a larger variation among different | Roberto Ierusalimschy | 2014-11-19 | 1 | -2/+2 | |
| | | | | platforms) | |||||
* | Windows uses "LONGLONG" option, even not having long long (it has __int64) | Roberto Ierusalimschy | 2014-11-02 | 1 | -12/+17 | |
| | ||||||
* | default changed from C89 to C99 + extra tests before using C99 | Roberto Ierusalimschy | 2014-10-30 | 1 | -82/+92 | |
| | | | | | features (when possible) + LUA_32BITS use 'int' when possible ('long' can be 64 bits) | |||||
* | Better organization of definitions in categories + removed | Roberto Ierusalimschy | 2014-10-29 | 1 | -170/+165 | |
| | | | | | | | '_CRT_SECURE_NO_WARNINGS' (useless there) + LUA_ENV/luai_writestring/ luai_writeline/luai_writestringerror/LUA_INT32/LUAI_UMEM/LUAI_MEM moved to other places (no need to be in luaconf.h) + changed definition for LUAL_BUFFERSIZE | |||||
* | small reorganization of tests around LUA_USE_C99 | Roberto Ierusalimschy | 2014-10-27 | 1 | -21/+24 | |
| | ||||||
* | comments + Windows numeric types not used if LUA_ANSI is defined | Roberto Ierusalimschy | 2014-10-27 | 1 | -6/+7 | |
| | ||||||
* | better (and safer?) way to test native size of type 'int' | Roberto Ierusalimschy | 2014-10-27 | 1 | -11/+9 | |
| | ||||||
* | avoid redeclaration of _CRT_SECURE_NO_WARNINGS + 'lua_numtointeger' -> | Roberto Ierusalimschy | 2014-10-24 | 1 | -3/+5 | |
| | | | | 'lua_numbertointeger' | |||||
* | use 'opf' (float) variants only when explicitly allowed (LUA_USE_C99) | Roberto Ierusalimschy | 2014-10-21 | 1 | -9/+4 | |
| | ||||||
* | does not use 'long long' when LUA_ANSI is set | Roberto Ierusalimschy | 2014-10-20 | 1 | -2/+2 | |
| | ||||||
* | macros 'LUA_QL'/'LUA_QL' deprecated | Roberto Ierusalimschy | 2014-10-17 | 1 | -2/+3 | |
| | ||||||
* | added "_CRT_SECURE_NO_WARNINGS" for Windows (to avoid warnings about | Roberto Ierusalimschy | 2014-10-15 | 1 | -9/+6 | |
| | | | | several standard C functions) + small changes in '#include's | |||||
* | better handling of systems that do not support 'long long' | Roberto Ierusalimschy | 2014-10-08 | 1 | -11/+28 | |
| | ||||||
* | easier way to compile Lua 32 | Roberto Ierusalimschy | 2014-10-03 | 1 | -3/+12 | |
| | ||||||
* | deprecated "cast macros" ('luaL_checkint', 'luaL_optint', etc.) | Roberto Ierusalimschy | 2014-10-01 | 1 | -4/+5 | |
| | ||||||
* | 'lua_Ctx' -> 'lua_Kcontext' | Roberto Ierusalimschy | 2014-08-01 | 1 | -7/+8 | |
| | ||||||
* | 'ipairs' respects metamethods | Roberto Ierusalimschy | 2014-07-24 | 1 | -1/+6 | |
| | ||||||
* | better support for extra user space associated with a Lua state | Roberto Ierusalimschy | 2014-07-24 | 1 | -1/+9 | |
| | ||||||
* | new type 'lua_Ctx' for continuation-function contexts (to allow type | Roberto Ierusalimschy | 2014-07-17 | 1 | -1/+17 | |
| | | | | to be configurable) | |||||
* | unsigned-manipulation functions (lua_puhsunsigned, lua_tounsigned, etc.) | Roberto Ierusalimschy | 2014-06-26 | 1 | -1/+7 | |
| | | | | deprecated | |||||
* | LUA_MAXUNSIGNED was only used to define 2.0^intnumbits (and that | Roberto Ierusalimschy | 2014-06-24 | 1 | -7/+1 | |
| | | | | | | definition was not strictly portable), so it was removed and replaced by a more correct and direct definition for 2.0^intnumbits (only where it was needed) | |||||
* | new items in default path for Windows | Roberto Ierusalimschy | 2014-06-10 | 1 | -6/+10 | |
| | ||||||
* | details (comments) | Roberto Ierusalimschy | 2014-06-01 | 1 | -9/+7 | |
| | ||||||
* | more "religious" definition for 'lua_numtointeger' | Roberto Ierusalimschy | 2014-05-27 | 1 | -9/+7 | |
| | ||||||
* | function 'luaV_numtointeger' changed to a global macro | Roberto Ierusalimschy | 2014-05-26 | 1 | -1/+19 | |
| | | | | 'lua_numtointeger' (tricky, small, and useful in several places) | |||||
* | no more use of 'scanf' for reading numbers | Roberto Ierusalimschy | 2014-05-21 | 1 | -10/+1 | |
| | ||||||
* | 'LUA_COMPAT_ALL' -> 'LUA_COMPAT_5_1'/'LUA_COMPAT_5_2' + "@*" in | Roberto Ierusalimschy | 2014-05-15 | 1 | -18/+39 | |
| | | | | comments replaced by "@@". ("@*" is too distracting) | |||||
* | comments | Roberto Ierusalimschy | 2014-05-11 | 1 | -3/+6 | |
| | ||||||
* | comment | Roberto Ierusalimschy | 2014-04-17 | 1 | -3/+3 | |
| | ||||||
* | correct integer limits for Windows + small adjustments for short | Roberto Ierusalimschy | 2014-04-16 | 1 | -3/+14 | |
| | | | | option | |||||
* | using predefined limits (instead of computing min/max values for each | Roberto Ierusalimschy | 2014-04-14 | 1 | -16/+28 | |
| | | | | type) + some comments | |||||
* | new macro LUA_MAXUNSIGNED + support for 'short' integers (for tests only) | Roberto Ierusalimschy | 2014-04-12 | 1 | -12/+36 | |
| |