Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new way to handle -E option (write a mark in the registry to avoidv5.2.0 | Roberto Ierusalimschy | 2011-12-12 | 2 | -18/+22 |
| | | | | reading environment variables) | ||||
* | removed redundant definition for FILEHANDLE | Roberto Ierusalimschy | 2011-12-08 | 1 | -4/+1 |
| | |||||
* | avoid a few warnings (casts) | Roberto Ierusalimschy | 2011-12-07 | 1 | -3/+3 |
| | |||||
* | cast from 'bool' to 'int' (for C++) | Roberto Ierusalimschy | 2011-12-07 | 1 | -2/+2 |
| | |||||
* | no more explicit support for 'luaall_c': unifying file can do | Roberto Ierusalimschy | 2011-12-06 | 2 | -12/+7 |
| | | | | the work | ||||
* | small bug: format '%d' for lua_Number argument | Roberto Ierusalimschy | 2011-12-06 | 1 | -2/+2 |
| | |||||
* | some compilers (e.g., gcc C++) do not accept NULL as a pointer in | Roberto Ierusalimschy | 2011-12-02 | 1 | -4/+4 |
| | | | | that context | ||||
* | macro 'luaL_getmetatable' seems more appropriate when getting | Roberto Ierusalimschy | 2011-12-02 | 1 | -3/+3 |
| | | | | metatables in registry | ||||
* | old error messages may be misleading | Roberto Ierusalimschy | 2011-12-02 | 1 | -4/+4 |
| | |||||
* | error message: "tag method" -> "metamethod" | Roberto Ierusalimschy | 2011-12-02 | 1 | -4/+4 |
| | |||||
* | function prototype did not match one in .h | Roberto Ierusalimschy | 2011-11-30 | 1 | -2/+2 |
| | |||||
* | allow non-integer arguments to integer formats (%d, %x, etc.), | Roberto Ierusalimschy | 2011-11-30 | 1 | -9/+10 |
| | | | | but check range | ||||
* | unused variable removed | Roberto Ierusalimschy | 2011-11-30 | 1 | -3/+2 |
| | |||||
* | comments | Roberto Ierusalimschy | 2011-11-30 | 3 | -14/+13 |
| | |||||
* | avoid "unreachable" 'break' | Roberto Ierusalimschy | 2011-11-30 | 1 | -2/+1 |
| | |||||
* | more uses of 'l_noret' | Roberto Ierusalimschy | 2011-11-30 | 4 | -16/+14 |
| | |||||
* | avoid 'return' "to avoid warnings" | Roberto Ierusalimschy | 2011-11-30 | 4 | -19/+14 |
| | |||||
* | 'lUA' -> 'LUA' | Roberto Ierusalimschy | 2011-11-30 | 2 | -4/+4 |
| | |||||
* | when available, use '*_r' versions of 'gmtime' and 'localtime' | Roberto Ierusalimschy | 2011-11-29 | 2 | -5/+23 |
| | |||||
* | another try to avoid warnings about unreachable 'return' after 'exit' | Roberto Ierusalimschy | 2011-11-29 | 1 | -2/+3 |
| | |||||
* | 'lua_load' has an extra argument 'mode' | Roberto Ierusalimschy | 2011-11-29 | 7 | -75/+50 |
| | |||||
* | comment | Roberto Ierusalimschy | 2011-11-29 | 1 | -2/+2 |
| | |||||
* | small change to avoid warnings of non-specified order of access | Roberto Ierusalimschy | 2011-11-29 | 1 | -2/+2 |
| | | | | to volatile fields | ||||
* | explicit option RTLD_LOCAL instead of 0 (Posix does not fix | Roberto Ierusalimschy | 2011-11-28 | 1 | -2/+2 |
| | | | | a default for dlopen) | ||||
* | 'table.pack' does not return 'n' (may be confusing when | Roberto Ierusalimschy | 2011-11-28 | 1 | -3/+2 |
| | | | | using table.pack as last argument in a call) | ||||
* | avoid some warnings about converting 32-bit shifts into 64-bit results | Roberto Ierusalimschy | 2011-11-28 | 2 | -9/+15 |
| | |||||
* | avoid warnings of unreacheable 'break's | Roberto Ierusalimschy | 2011-11-28 | 1 | -3/+4 |
| | |||||
* | MS_ASMTRICK is only valid on MS compilers (not any Windows compiler) | Roberto Ierusalimschy | 2011-11-25 | 1 | -2/+2 |
| | |||||
* | 'LUA_DL_DLL' is not yet defined before the inclusion of 'lua.h' | Roberto Ierusalimschy | 2011-11-25 | 1 | -2/+2 |
| | |||||
* | '_fseeki64' and family not available in all Windows platforms | Roberto Ierusalimschy | 2011-11-25 | 1 | -2/+4 |
| | |||||
* | details | Roberto Ierusalimschy | 2011-11-24 | 2 | -5/+5 |
| | |||||
* | options for 'collectgarbage' renamed: "inc" -> "incremental"; | Roberto Ierusalimschy | 2011-11-23 | 1 | -2/+2 |
| | | | | "gen" -> "generational" | ||||
* | small changes to avoid some warnings | Roberto Ierusalimschy | 2011-11-16 | 1 | -9/+5 |
| | |||||
* | new function 'luaL_loadfilex' | Roberto Ierusalimschy | 2011-11-14 | 3 | -19/+50 |
| | |||||
* | 'luaIO_Stream' -> 'luaL_Stream' | Roberto Ierusalimschy | 2011-11-14 | 1 | -2/+2 |
| | |||||
* | strutcture for file handles exported in 'lauxlib.h' | Roberto Ierusalimschy | 2011-11-11 | 2 | -7/+28 |
| | |||||
* | using Lua buffers to build error messages | Roberto Ierusalimschy | 2011-11-10 | 1 | -9/+9 |
| | |||||
* | make treatment of 'pcall' and 'xpcall' more similar | Roberto Ierusalimschy | 2011-11-09 | 1 | -14/+11 |
| | |||||
* | refactoring of common parts of 'pcall' and 'xpcall' + avoids | Roberto Ierusalimschy | 2011-11-09 | 1 | -16/+21 |
| | | | | stack errors on these functions (return error code instead) | ||||
* | create error messages with a single concat, to avoid problems with | Roberto Ierusalimschy | 2011-11-09 | 1 | -20/+33 |
| | | | | creating strings piecemeal | ||||
* | in 'luaL_checkstack', include extra stack space in test to allow | Roberto Ierusalimschy | 2011-11-09 | 1 | -2/+4 |
| | | | | correct execution of error routines, if necessary | ||||
* | extra argument to instruction 'checkstack' (in 'testC') | Roberto Ierusalimschy | 2011-11-09 | 1 | -2/+3 |
| | |||||
* | configurable 'directory separator' in 'package.searchpath' | Roberto Ierusalimschy | 2011-11-09 | 1 | -11/+34 |
| | |||||
* | avoids including 'stdio.h' everywhere (because of definitions for | Roberto Ierusalimschy | 2011-11-09 | 1 | -1/+5 |
| | | | | luai_writestring/luai_writeline) | ||||
* | small bug: error message in 'io.lines' is not the error number | Roberto Ierusalimschy | 2011-11-09 | 1 | -4/+5 |
| | |||||
* | avoid calling "extra value" as if it were a function option | Roberto Ierusalimschy | 2011-11-06 | 1 | -4/+6 |
| | |||||
* | by default, do not use Windows' goodies in Windows CE build | Roberto Ierusalimschy | 2011-11-05 | 1 | -3/+3 |
| | |||||
* | cannot apply macro 'getstr' over NULL | Roberto Ierusalimschy | 2011-10-31 | 1 | -5/+6 |
| | |||||
* | extra comments about what fields are optional debug information | Roberto Ierusalimschy | 2011-10-31 | 1 | -4/+4 |
| | |||||
* | detail (avoid applying macro 'getstr' with a function-call argument) | Roberto Ierusalimschy | 2011-10-31 | 1 | -2/+3 |
| |