Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix detection of LUA_USE_WINDOWS define (#64) | Hisham Muhammad | 2024-02-24 | 1 | -5/+4 |
| | |||||
* | Fix missing closing parenthesis in preprocessor macro (#58) | Gran PC | 2023-11-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | Fixes this: ```In file included from liolib.c:10:0: lprefix.h:201:0: warning: "LUA_USE_POSIX" redefined [enabled by default] # define LUA_USE_POSIX 1 ^ In file included from /usr/include/lua.h:16:0, from c-api/compat-5.3.h:10, from lprefix.h:46, from liolib.c:10: /usr/include/luaconf.h:21:0: note: this is the location of the previous definition #define LUA_USE_POSIX ^ In file included from liolib.c:10:0: lprefix.h:202:9: error: missing ')' in expression # elif (defined(_MSC_VER) ``` | ||||
* | Support getting io.popen results on file:close() on PUC-Rio Lua 5.1 (#53) | Hisham Muhammad | 2023-09-13 | 1 | -0/+102 |
| | |||||
* | Update backports to Lua 5.3.4. | Philipp Janda | 2017-08-27 | 1 | -0/+9 |
| | |||||
* | Fix compilation for older versions of Lua 5.3. | Philipp Janda | 2017-08-27 | 1 | -0/+5 |
| | | | | Fixes #20. | ||||
* | Simplify utf8 helper function. | Philipp Janda | 2016-02-05 | 1 | -7/+1 |
| | | | | | There's no need for `compat_utf8_escape()` to be a vararg function. Remove default templates from `package.path`. | ||||
* | Update backports. | Philipp Janda | 2016-01-22 | 1 | -15/+43 |
| | | | | | The backports of lstrlib.c, ltablib.c, and lutf8lib.c have been updated to Lua version 5.3.2. | ||||
* | Fix compilation of lstrlib.c for Lua 5.1. | Philipp Janda | 2015-04-29 | 1 | -0/+1 |
| | | | | | | The removal of lualib.h from compat-5.3.h causes an unwanted replacement of luaopen_string to luaopen_string_XXX. Include lualib.h in lprefix.h before the corresponding macro definition to counter that. | ||||
* | better performance for lua_compare; some code refactoring | Philipp Janda | 2015-01-24 | 1 | -7/+0 |
| | |||||
* | hack around %U format in lutf8lib.c | Philipp Janda | 2015-01-22 | 1 | -1/+30 |
| | |||||
* | use Lua 5.3's source for string packing | Philipp Janda | 2015-01-21 | 1 | -0/+42 |
| | |||||
* | use table library from Lua 5.3 sources if available | Philipp Janda | 2015-01-20 | 1 | -0/+1 |
| | |||||
* | prepare to use ltablib.c from 5.3 for table library | Philipp Janda | 2015-01-19 | 1 | -0/+17 |
| | |||||
* | add utf8 library from Lua 5.3; use struct for string packing | Philipp Janda | 2015-01-14 | 1 | -0/+56 |