Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/qtlua.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qlua/qluaapplication.cpp')
-rw-r--r--qlua/qluaapplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qlua/qluaapplication.cpp b/qlua/qluaapplication.cpp
index 8b25422..fc13f94 100644
--- a/qlua/qluaapplication.cpp
+++ b/qlua/qluaapplication.cpp
@@ -709,8 +709,8 @@ QLuaApplication::Private::acceptInput(bool clear)
if (L)
{
struct lua_State *L = lua;
- lua_getfield(L, LUA_GLOBALSINDEX, "_PROMPT");
- lua_getfield(L, LUA_GLOBALSINDEX, "_PROMPT2");
+ lua_getglobal(L, "_PROMPT");
+ lua_getglobal(L, "_PROMPT2");
luaPrompt = lua_isstring(L,-2) ? lua_tostring(L, -2) : "> ";
luaPrompt2 = lua_isstring(L,-1) ? lua_tostring(L, -1) : ">> ";
lua_pop(L, 2);