Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-09-24 | Add braces and suppress warning.strerror | Philipp Janda | 1 | -3/+7 | |
2017-09-23 | Do less stuff when sz is 0 in compat53_strerror(). | Philipp Janda | 1 | -10/+10 | |
2017-09-23 | Transparently handle GNU/XSI strerror_r. | Philipp Janda | 1 | -45/+20 | |
Closes #36. | |||||
2017-09-18 | Add Travis-CI integration | Philipp Janda | 4 | -7/+60 | |
2017-09-16 | Fix links in the README.md. | Philipp Janda | 1 | -3/+3 | |
2017-09-16 | Add tests for `luaL_load{buffer,file}x`. | Philipp Janda | 3 | -76/+129 | |
Fix bug regarding empty input in `lua_load`. Adapt error message and error code. | |||||
2017-09-16 | Add Lua 5.3 version of `lua_load`. | Philipp Janda | 3 | -37/+73 | |
Change `luaL_loadfilex` to use the modified `lua_load` function. Add more credits to the README.md. | |||||
2017-09-16 | Include lualib.h, remove #define LUA_FILEHANDLE. | Philipp Janda | 1 | -8/+5 | |
This avoids warnings about redefinitions when `lualib.h` is included after `compat-5.3.h`. Lua 5.1 only. Also make clear that `COMPAT53_INCLUDE_SOURCE` is an internal macro by undefining it before we use it. | |||||
2017-09-13 | fix usage of tabs | The Phantom Derpstorm | 1 | -5/+5 | |
2017-09-13 | fix `lua_Integer` casts that error on Visual C++ and other pedantic ↵ | ThePhD | 1 | -2/+2 | |
conversion-warning compilers for 64-bit builds | |||||
2017-09-13 | define LUA_ERRGCMM code for return values | ThePhD | 2 | -0/+14 | |
2017-09-13 | update readme | ThePhD | 1 | -2/+2 | |
2017-09-13 | implement luaL_loadbufferx and luaL_loadfilex | ThePhD | 2 | -4/+264 | |
2017-09-08 | Add (partial) luaL_Stream definition | daurnimator | 2 | -6/+17 | |
2017-09-08 | Add LUA_FILEHANDLE define | daurnimator | 2 | -0/+4 | |
2017-09-08 | Add lua_resume | daurnimator | 2 | -0/+4 | |
2017-09-03 | Use FALLTHROUGH annotation to fix -Wimplicit-fallthrough warning | daurnimator | 1 | -1/+1 | |
Using a form that passes -Wimplicit-fallthrough=4. See https://gcc.gnu.org/onlinedocs/gcc-7.1.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough |