diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-03-05 13:23:30 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-03-05 16:49:04 +0100 |
commit | f86bc1f714dba602505312ca08e1a5139f2e014a (patch) | |
tree | 62dec626f94cb93bf1b8616f2c5f179bb59e72c6 /main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch | |
parent | 5922ff1669d75f7ce66b82a13bf54f448e27ce74 (diff) | |
download | aports-f86bc1f714dba602505312ca08e1a5139f2e014a.tar.bz2 aports-f86bc1f714dba602505312ca08e1a5139f2e014a.tar.xz |
main/lua-posix: fix 5.1 incompat issue
Diffstat (limited to 'main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch')
-rw-r--r-- | main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch b/main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch new file mode 100644 index 0000000000..c6fffd54fb --- /dev/null +++ b/main/lua-posix/0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch @@ -0,0 +1,30 @@ +From 9f6c2a8fe34db847df957e55e0375b5cf15a44b9 Mon Sep 17 00:00:00 2001 +From: nmcveity <nmcveity@gmail.com> +Date: Mon, 4 Mar 2013 22:49:27 -0800 +Subject: [PATCH] Removed Lua 5.2 functions lua_len and lua_tointegerx + +This fixes issue #71. +--- + lposix.c | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +diff --git a/lposix.c b/lposix.c +index ffd3c57..bf5accb 100644 +--- a/lposix.c ++++ b/lposix.c +@@ -901,11 +901,7 @@ static int runexec(lua_State *L, int use_shell) + const char *path = luaL_checkstring(L, 1); + int i,n=lua_gettop(L), table = 0; + if (n >= 1 && lua_type(L, 2) == LUA_TTABLE) { +- int isint; +- lua_len(L, 2); +- n = lua_tointegerx(L, -1, &isint); +- if (!isint) +- luaL_error(L, "argument 2 is a table, but has non-numeric length"); ++ n = lua_objlen(L, 2); + table = 1; + } else + n--; +-- +1.8.1.5 + |