1
0

Compare commits

..

No commits in common. "master" and "v0.5.7" have entirely different histories.

View File

@ -302,8 +302,3 @@ func (s *State) GetAllLuaFunctions(names ...string) (map[string]*LuaFunction, er
}
return funcs, nil
}
// PushLuaFunction pushes a stored LuaFunction reference onto the stack
func (s *State) PushLuaFunction(lf *LuaFunction) {
C.lua_rawgeti(s.L, C.LUA_REGISTRYINDEX, C.int(lf.ref))
}