1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-10 15:21:03 +00:00

Squashed '3rdparty/toluapp/' changes from 1fae7fd2..db877c5d

db877c5d Code generation fixes. (#4)

git-subtree-dir: 3rdparty/toluapp
git-subtree-split: db877c5dd1c2750cb5521b2bd82528ba500b3666
This commit is contained in:
Brenden Matthews 2018-12-22 15:27:08 -05:00
parent 5d71853ec2
commit f0eb4a3477
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

View File

@ -189,7 +189,7 @@ function classPackage:register (pre)
output("#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 501\n");
output(pre.."TOLUA_API int luaopen_"..self.name.." (lua_State* tolua_S) {")
output(pre.." return tolua_"..self.name.."_open(tolua_S);")
output(pre.."};")
output(pre.."}")
output("#endif\n\n")
pop()

View File

@ -127,8 +127,8 @@ TOLUA_API int tolua_tofieldvalue(lua_State *L, int lo, int index, int def)
TOLUA_API int tolua_getfieldboolean(lua_State *L, int lo, int index, int def)
{
(void)def;
int v;
(void)def;
lua_pushnumber(L, index);
lua_gettable(L, lo);
v = lua_isnil(L, -1) ? 0 : lua_toboolean(L, -1);