From c598987f83e50e0b678e89cd507a5a284a18b62a Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Thu, 16 Jul 2015 21:18:54 +0000 Subject: MirLua: - lua_pushliteral for literals - added m_protocol module - version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@14580 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/src/mlua.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/MirLua/src/mlua.cpp') diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index 61405de928..c1dd847be4 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -27,9 +27,9 @@ void CMLua::Load() luaL_openlibs(L); lua_getglobal(L, "package"); - lua_pushstring(L, ""); + lua_pushliteral(L, ""); lua_setfield(L, -2, "path"); - lua_pushstring(L, ""); + lua_pushliteral(L, ""); lua_setfield(L, -2, "cpath"); lua_pop(L, 1); -- cgit v1.2.3