aboutsummaryrefslogtreecommitdiffstats
path: root/main/lua-subprocess/luafileobject.patch
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-12-29 16:29:16 +0000
committerTed Trask <ttrask01@yahoo.com>2014-12-29 16:30:25 +0000
commit7294a77184f6a64157bb7e7fb39eae911ab45bf7 (patch)
tree124070ac0653be485a249c149df63394a1ff04b8 /main/lua-subprocess/luafileobject.patch
parentbeea7418ac9442e6b5d94a047ebc6e1770e597d6 (diff)
downloadaports-7294a77184f6a64157bb7e7fb39eae911ab45bf7.tar.bz2
aports-7294a77184f6a64157bb7e7fb39eae911ab45bf7.tar.xz
main/lua-subprocess: update to 0.0.20141229
Diffstat (limited to 'main/lua-subprocess/luafileobject.patch')
-rw-r--r--main/lua-subprocess/luafileobject.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/main/lua-subprocess/luafileobject.patch b/main/lua-subprocess/luafileobject.patch
deleted file mode 100644
index 1385aa7b00..0000000000
--- a/main/lua-subprocess/luafileobject.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/liolib-copy.c
-+++ b/liolib-copy.c
-@@ -312,8 +312,7 @@ static int io_fclose(lua_State *L)
- FILE *liolib_copy_tofile(lua_State *L, int index)
- {
- int eq;
-- if (lua_type(L, index) != LUA_TTABLE) return NULL;
-- lua_getmetatable(L, index);
-+ if (0 == lua_getmetatable(L, index)) return NULL;
- luaL_getmetatable(L, LUA_FILEHANDLE);
- eq = lua_equal(L, -2, -1);
- lua_pop(L, 2);