Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | use appropriate macros to convert GCObject to specific types | Roberto Ierusalimschy | 2014-06-18 | 3 | -9/+17 | |
| | ||||||
* | allows different 'source' for each prototype, but inherits it from | Roberto Ierusalimschy | 2014-06-18 | 2 | -21/+34 | |
| | | | | | parent when they are equal (only possible case for chunks created by the parser) | |||||
* | added assertion about sources being the same for all protos in a chunk | Roberto Ierusalimschy | 2014-06-18 | 1 | -2/+4 | |
| | ||||||
* | changed macro for compatibility options + details | Roberto Ierusalimschy | 2014-06-18 | 1 | -5/+5 | |
| | ||||||
* | source for all prototypes must be equal in a chunk; no need to store | Roberto Ierusalimschy | 2014-06-18 | 2 | -4/+6 | |
| | | | | each one separated | |||||
* | 'math.ifloor' is back | Roberto Ierusalimschy | 2014-06-18 | 1 | -1/+15 | |
| | ||||||
* | macro 'checkobjref' accepts NULL (as all its uses checked for NULL | Roberto Ierusalimschy | 2014-06-17 | 1 | -21/+15 | |
| | | | | before) + user value from a userdata may not be a GC object | |||||
* | cleaner way to handle bit CIST_OAH (with auxiliar macros) | Roberto Ierusalimschy | 2014-06-12 | 3 | -16/+16 | |
| | ||||||
* | janitor work on 'lua_resume' and related code | Roberto Ierusalimschy | 2014-06-11 | 1 | -28/+32 | |
| | ||||||
* | new items in default path for Windows | Roberto Ierusalimschy | 2014-06-10 | 1 | -6/+10 | |
| | ||||||
* | bit-field CIST_YIELDED removed (it was never consulted) | Roberto Ierusalimschy | 2014-06-10 | 2 | -10/+8 | |
| | ||||||
* | must also reset CIST_OAH if necessary (CallInfo is not a fresh one) | Roberto Ierusalimschy | 2014-06-10 | 1 | -5/+6 | |
| | ||||||
* | more relaxed rules for __eq metamethod (more similar to other | Roberto Ierusalimschy | 2014-06-10 | 3 | -20/+11 | |
| | | | | operators) | |||||
* | no need for field 'status' in structure 'CallInfo' (after removal | Roberto Ierusalimschy | 2014-06-10 | 3 | -29/+29 | |
| | | | | | of 'lua_getctx') + field 'old_allowhook' can be packed into a single bit | |||||
* | new type lua_KFunction + no more 'lua_getctx' | Roberto Ierusalimschy | 2014-06-10 | 6 | -61/+44 | |
| | ||||||
* | added comments | Roberto Ierusalimschy | 2014-06-09 | 1 | -6/+19 | |
| | ||||||
* | lots of janitor work (including comments) + 'arg' table created | Roberto Ierusalimschy | 2014-06-05 | 1 | -153/+223 | |
| | | | | | before running any script + changes in the parameters and return of 'collectargs' | |||||
* | 'math.mof' works with integers, too | Roberto Ierusalimschy | 2014-06-02 | 1 | -12/+24 | |
| | ||||||
* | 'assert' does not assume that the error object is a string | Roberto Ierusalimschy | 2014-06-02 | 1 | -4/+9 | |
| | ||||||
* | if numeral overflows the reading buffer, signal it as invalid input | Roberto Ierusalimschy | 2014-06-02 | 1 | -3/+5 | |
| | | | | (resulting in nil) | |||||
* | details (comments) | Roberto Ierusalimschy | 2014-06-01 | 1 | -9/+7 | |
| | ||||||
* | detail (to avoid warnings of unused variable) | Roberto Ierusalimschy | 2014-05-29 | 1 | -2/+2 | |
| | ||||||
* | more "religious" definition for 'lua_numtointeger' | Roberto Ierusalimschy | 2014-05-27 | 1 | -9/+7 | |
| | ||||||
* | no more 'math.ifloor' + new semantics for 'math.floor'/'math.ceil' | Roberto Ierusalimschy | 2014-05-26 | 1 | -14/+18 | |
| | ||||||
* | function 'luaV_numtointeger' changed to a global macro | Roberto Ierusalimschy | 2014-05-26 | 4 | -29/+35 | |
| | | | | 'lua_numtointeger' (tricky, small, and useful in several places) | |||||
* | simpler handling of 'GCScallfin' state + more comments | Roberto Ierusalimschy | 2014-05-25 | 1 | -57/+47 | |
| | ||||||
* | detail (comment) | Roberto Ierusalimschy | 2014-05-23 | 1 | -3/+3 | |
| | ||||||
* | no more use of 'scanf' for reading numbers | Roberto Ierusalimschy | 2014-05-21 | 2 | -27/+82 | |
| | ||||||
* | small improvements concerning 'check_next' | Roberto Ierusalimschy | 2014-05-21 | 1 | -25/+39 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 2014-05-20 | 1 | -4/+6 | |
| | ||||||
* | better(?) implementation for 'pcall'/'xpcall' (regarding the insertion | Roberto Ierusalimschy | 2014-05-16 | 1 | -20/+35 | |
| | | | | of the boolean first result) | |||||
* | 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 | |
| | | | | not loading itself) | |||||
* | 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 | |
| | | | | comments replaced by "@@". ("@*" is too distracting) | |||||
* | 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 | |
| | | | | the addition of '.0' to float->string conversions | |||||
* | 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 | |
| | | | | documentation | |||||
* | 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 | |
| |