summaryrefslogtreecommitdiff
path: root/sysutils/conky/files/patch-src_luamm.hh
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2019-06-25 07:59:08 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2019-06-25 07:59:08 +0000
commit3c6f0f20aae441688b7e2795cec69ba85ef9c4e1 (patch)
treedb0676d008275b23718a0c9c5387c23c09764ef2 /sysutils/conky/files/patch-src_luamm.hh
parentdevel/stack: Update to 2.1.1.1. (diff)
Update conky to 1.11.4
Notes
Notes: svn path=/head/; revision=505074
Diffstat (limited to '')
-rw-r--r--sysutils/conky/files/patch-src_luamm.hh11
1 files changed, 0 insertions, 11 deletions
diff --git a/sysutils/conky/files/patch-src_luamm.hh b/sysutils/conky/files/patch-src_luamm.hh
deleted file mode 100644
index d5870f0b6479..000000000000
--- a/sysutils/conky/files/patch-src_luamm.hh
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/luamm.hh.orig 2018-12-02 18:26:02 UTC
-+++ src/luamm.hh
-@@ -204,7 +204,7 @@ class state : private std::mutex {
- }
- bool isnil(int index) throw() { return lua_isnil(cobj.get(), index); }
- bool isnone(int index) throw() { return lua_isnone(cobj.get(), index); }
-- bool isnumber(int index) throw() { return lua_isnumber(cobj.get(), index); }
-+ bool isanumber(int index) throw() { return lua_isnumber(cobj.get(), index); }
- bool isstring(int index) throw() { return lua_isstring(cobj.get(), index); }
- void pop(int n = 1) throw() { lua_pop(cobj.get(), n); }
- void pushboolean(bool b) throw() { lua_pushboolean(cobj.get(), b); }