Commit 9ec29ad2 authored by Megax's avatar Megax
Browse files

* Kis korrígáció.

parent 1ef714b9
......@@ -183,7 +183,6 @@ namespace KopiLua
incr_top(L);
}
private static int auxgetinfo (lua_State L, CharPtr what, lua_Debug ar,
Closure f, CallInfo ci) {
int status = 1;
......
......@@ -863,16 +863,9 @@ namespace LuaInterface
/// <returns>see lua docs</returns>
/// <author>Reinhard Ostermeier</author>
public string GetLocal(LuaCore.lua_Debug luaDebug, int n)
{
try
{
return LuaCore.lua_getlocal(luaState, luaDebug, n).ToString();
}
finally
{
//System.Runtime.InteropServices.Marshal.FreeHGlobal(ld);
}
}
/// <summary>
/// Sets local (see lua docs)
......@@ -882,16 +875,9 @@ namespace LuaInterface
/// <returns>see lua docs</returns>
/// <author>Reinhard Ostermeier</author>
public string SetLocal(LuaCore.lua_Debug luaDebug, int n)
{
try
{
return LuaCore.lua_setlocal(luaState, luaDebug, n).ToString();
}
finally
{
//System.Runtime.InteropServices.Marshal.FreeHGlobal(ld);
}
}
/// <summary>
/// Gets up value (see lua docs)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment