diff options
author | Remko Tronçon <git@el-tramo.be> | 2013-12-26 15:56:45 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2013-12-27 23:06:53 (GMT) |
commit | 5a89265623214164fa7ce36721de05183d53058d (patch) | |
tree | 1cb061f1c314668396dd0e16047d995641631d4f /Sluift/client.cpp | |
parent | 806efd2603a4083ca433501dcd6e5b8479db0b39 (diff) | |
download | swift-5a89265623214164fa7ce36721de05183d53058d.zip swift-5a89265623214164fa7ce36721de05183d53058d.tar.bz2 |
Sluift: Refactoring
- Rename boot.lua to core.lua
- Support Lua 5.2
- Support version prefixes for sluift module
- Add Client:process_events
Change-Id: I3fa6d06d1dbdf86f65b9f4203bd2ec5b5526b104
Diffstat (limited to 'Sluift/client.cpp')
-rw-r--r-- | Sluift/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sluift/client.cpp b/Sluift/client.cpp index 97f9106..9eac84b 100644 --- a/Sluift/client.cpp +++ b/Sluift/client.cpp @@ -419,7 +419,7 @@ static void pushEvent(lua_State* L, const SluiftClient::Event& event) { lua_pushstring(L, event.from.toString().c_str()); lua_setfield(L, -2, "from"); - lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.bootIndex); + lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex); lua_getfield(L, -1, "process_pubsub_event"); lua_pushvalue(L, -3); lua_call(L, 1, 0); |