diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-06-04 18:01:23 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-06-04 18:01:23 +0000 |
commit | 1c96560f8bc136fa2930dd67f538f65c02a1c350 (patch) | |
tree | e0ecd365094b4aff09c6fe8cab228d371ce68d05 /plugins/MirLua/src/mlua.cpp | |
parent | 420403dedffee8a10336e450337d30e1f25336b2 (diff) |
MirLua:
- fixed DBEVENTINFO metatable
- BLOB metatable temporary moved to utils
- fixed tonumber function
git-svn-id: http://svn.miranda-ng.org/main/trunk@16913 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua.cpp')
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 5f5c2080ce..d1f7811bdc 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -67,6 +67,8 @@ void CMLua::Load() lua_setfield(L, -2, "interpolate");
lua_pop(L, 3);
+ luaopen_m_utils(L);
+
lua_atpanic(L, luaM_atpanic);
Log("Loading miranda modules");
|