summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/scripting/luascript.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/scripting/luascript.cpp b/src/scripting/luascript.cpp
index 33145b56..8e19cd52 100644
--- a/src/scripting/luascript.cpp
+++ b/src/scripting/luascript.cpp
@@ -86,9 +86,13 @@ void LuaScript::load(const char *prog)
{
int res = luaL_loadstring(mState, prog);
- if (res == LUA_ERRSYNTAX)
- {
- LOG_ERROR("Syntax error while loading Lua script.");
+ switch (res) {
+ case LUA_ERRSYNTAX:
+ LOG_ERROR("Syntax error while loading Lua script: "
+ << lua_tostring(mState, -1));
+ return;
+ case LUA_ERRMEM:
+ LOG_ERROR("Memory allocation error while loading Lua script");
return;
}