aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2015-04-21 17:11:36 +0200
committerPhilipp Janda <siffiejoe@gmx.net>2015-04-21 17:11:36 +0200
commit9e5d654ea78754556068e2ce0aee33fe796f5b70 (patch)
tree9fa043088f61707ed454df0461c6b60c43792396
parenta7d337f0d1ccfde974a003993387a42b2daabfed (diff)
downloadlua-compat-5.3-9e5d654ea78754556068e2ce0aee33fe796f5b70.tar.gz
lua-compat-5.3-9e5d654ea78754556068e2ce0aee33fe796f5b70.tar.bz2
lua-compat-5.3-9e5d654ea78754556068e2ce0aee33fe796f5b70.zip
Link to issue with coroutine.running.
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index 519a67a..a1caa11 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ your project:
67 5.3 sources or from the `struct` module. (`struct` is not 100% 67 5.3 sources or from the `struct` module. (`struct` is not 100%
68 compatible to Lua 5.3's string packing!) (See [here][4]) 68 compatible to Lua 5.3's string packing!) (See [here][4])
69* `math.maxinteger` and `math.mininteger`, `math.tointeger`, `math.type`, 69* `math.maxinteger` and `math.mininteger`, `math.tointeger`, `math.type`,
70 and `math.ult` (See [here][5] 70 and `math.ult` (See [here][5])
71* `ipairs` respects `__index` metamethod 71* `ipairs` respects `__index` metamethod
72* `table.move` 72* `table.move`
73* `table` library respects metamethods 73* `table` library respects metamethods
@@ -80,12 +80,14 @@ For Lua 5.1 additionally:
80* `string.format` calls `tostring` on arguments for `%s` 80* `string.format` calls `tostring` on arguments for `%s`
81* `math.log` accepts base argument 81* `math.log` accepts base argument
82* `xpcall` takes additional arguments 82* `xpcall` takes additional arguments
83* `pcall` and `xpcall` can execute functions that yield 83* `pcall` and `xpcall` can execute functions that yield (see
84 [here][22] for a possible problem with `coroutine.running`)
84* `pairs` respects `__pairs` metamethod (see [here][7]) 85* `pairs` respects `__pairs` metamethod (see [here][7])
85* `rawlen` (but `#` still doesn't respect `__len` for tables) 86* `rawlen` (but `#` still doesn't respect `__len` for tables)
86* `package.searchers` as alias for `package.loaders` 87* `package.searchers` as alias for `package.loaders`
87* `package.searchpath` (see [here][8]) 88* `package.searchpath` (see [here][8])
88* `coroutine` functions dealing with the main coroutine 89* `coroutine` functions dealing with the main coroutine (see
90 [here][22] for a possible problem with `coroutine.running`)
89* `coroutine.create` accepts functions written in C 91* `coroutine.create` accepts functions written in C
90* return code of `os.execute` (see [here][9]) 92* return code of `os.execute` (see [here][9])
91* `io.write` and `file:write` return file handle 93* `io.write` and `file:write` return file handle
@@ -201,4 +203,5 @@ This package contains code written by:
201 [19]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_arith 203 [19]: https://github.com/keplerproject/lua-compat-5.3/wiki/lua_arith
202 [20]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_checkversion 204 [20]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_checkversion
203 [21]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_Buffer 205 [21]: https://github.com/keplerproject/lua-compat-5.3/wiki/luaL_Buffer
206 [22]: https://github.com/keplerproject/lua-compat-5.2/wiki/coroutine.running
204 207