From e41da319418808d832e088c4c0b09ffaf8cc144e Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Mon, 1 Feb 2016 14:06:49 +0000 Subject: MirLua: some changes git-svn-id: http://svn.miranda-ng.org/main/trunk@16207 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/src/mlua.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'plugins/MirLua/src/mlua.cpp') diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 1dc4ef440d..8fd617fce7 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -49,14 +49,10 @@ void CMLua::Load() SetPaths(); - lua_pushcclosure(L, luaM_print, 0); - lua_setglobal(L, "print"); - lua_pushcclosure(L, luaM_toansi, 0); - lua_setglobal(L,"a"); - lua_pushcclosure(L, luaM_toucs2, 0); - lua_setglobal(L, "u"); - lua_pushcclosure(L, luaM_totable, 0); - lua_setglobal(L, "totable"); + lua_register(L, "print", luaM_print); + lua_register(L, "a", luaM_toansi); + lua_register(L, "u", luaM_toucs2); + lua_register(L, "totable", luaM_totable); lua_atpanic(L, luaM_atpanic); -- cgit v1.2.3