summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_metatable.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-02-01 14:06:49 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-02-01 14:06:49 +0000
commite41da319418808d832e088c4c0b09ffaf8cc144e (patch)
tree00965849dae062375e4ae2c67e68f8aabc7c5ba3 /plugins/MirLua/src/mlua_metatable.h
parent014e23323d6dc79605da8ebad1c357176ede9122 (diff)
MirLua: some changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@16207 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_metatable.h')
-rw-r--r--plugins/MirLua/src/mlua_metatable.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/MirLua/src/mlua_metatable.h b/plugins/MirLua/src/mlua_metatable.h
index ec5ee58451..bef297905e 100644
--- a/plugins/MirLua/src/mlua_metatable.h
+++ b/plugins/MirLua/src/mlua_metatable.h
@@ -135,8 +135,7 @@ public:
{
MT::name = tname;
- lua_pushcfunction(L, lua__new);
- lua_setglobal(L, MT::name);
+ lua_register(L, MT::name, lua__new);
luaL_newmetatable(L, MT::name);
lua_pushcfunction(L, lua__new);