diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2017-09-16 12:45:00 +0200 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2017-09-16 12:45:00 +0200 |
commit | f76fb008c8297dc0a9de579c20cfe57480890688 (patch) | |
tree | 5d2301a733f2210207e85dfc8218bd0e8d28174e /README.md | |
parent | 7fc7aba7defda15b7f9c56282e585eb91379fe3b (diff) | |
parent | c0a59dda383c37fdeb786de7b3fc4e58e2ab886d (diff) | |
download | lua-compat-5.3-f76fb008c8297dc0a9de579c20cfe57480890688.tar.gz lua-compat-5.3-f76fb008c8297dc0a9de579c20cfe57480890688.tar.bz2 lua-compat-5.3-f76fb008c8297dc0a9de579c20cfe57480890688.zip |
Merge branch 'luaL_Stream' of https://github.com/daurnimator/lua-compat-5.3 into daurnimator-luaL_Stream
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -144,9 +144,11 @@ For Lua 5.1 additionally: | |||
144 | * `LUA_OK` | 144 | * `LUA_OK` |
145 | * `LUA_ERRGCMM` | 145 | * `LUA_ERRGCMM` |
146 | * `LUA_OP*` macros for `lua_arith` and `lua_compare` | 146 | * `LUA_OP*` macros for `lua_arith` and `lua_compare` |
147 | * `LUA_FILEHANDLE` | ||
147 | * `lua_Unsigned` | 148 | * `lua_Unsigned` |
149 | * `luaL_Stream` (limited compatibility, see[here][19]) | ||
148 | * `lua_absindex` | 150 | * `lua_absindex` |
149 | * `lua_arith` (see [here][19]) | 151 | * `lua_arith` (see [here][20]) |
150 | * `lua_compare` | 152 | * `lua_compare` |
151 | * `lua_len`, `lua_rawlen`, and `luaL_len` | 153 | * `lua_len`, `lua_rawlen`, and `luaL_len` |
152 | * `lua_pushstring`, `lua_pushlstring` (return value) | 154 | * `lua_pushstring`, `lua_pushlstring` (return value) |
@@ -160,10 +162,10 @@ For Lua 5.1 additionally: | |||
160 | * `luaL_execresult` | 162 | * `luaL_execresult` |
161 | * `luaL_fileresult` | 163 | * `luaL_fileresult` |
162 | * `luaL_checkversion` (with empty body, only to avoid compile errors, | 164 | * `luaL_checkversion` (with empty body, only to avoid compile errors, |
163 | see [here][20]) | 165 | see [here][21]) |
164 | * `luaL_tolstring` | 166 | * `luaL_tolstring` |
165 | * `luaL_buffinitsize`, `luaL_prepbuffsize`, and `luaL_pushresultsize` | 167 | * `luaL_buffinitsize`, `luaL_prepbuffsize`, and `luaL_pushresultsize` |
166 | (see [here][21]) | 168 | (see [here][22]) |
167 | * `lua_pushunsigned`, `lua_tounsignedx`, `lua_tounsigned`, | 169 | * `lua_pushunsigned`, `lua_tounsignedx`, `lua_tounsigned`, |
168 | `luaL_checkunsigned`, `luaL_optunsigned`, if | 170 | `luaL_checkunsigned`, `luaL_optunsigned`, if |
169 | `LUA_COMPAT_APIINTCASTS` is defined. | 171 | `LUA_COMPAT_APIINTCASTS` is defined. |
@@ -225,7 +227,8 @@ This package contains code written by: | |||
225 | [17]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_setuservalue | 227 | [17]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_setuservalue |
226 | [18]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_stringtonumber | 228 | [18]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_stringtonumber |
227 | [19]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_arith | 229 | [19]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_arith |
228 | [20]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_checkversion | 230 | [20]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_Stream |
229 | [21]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_Buffer | 231 | [21]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_checkversion |
230 | [22]: https://github.com/keplerproject/lua-compat-5.3/wiki/coroutine.running | 232 | [22]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_Buffer |
233 | [23]: https://github.com/keplerproject/lua-compat-5.3/wiki/coroutine.running | ||
231 | 234 | ||