summaryrefslogtreecommitdiff
path: root/src/script/common/c_internal.cpp
diff options
context:
space:
mode:
authorSfan5 <sfan5@live.de>2014-03-15 14:49:30 +0100
committerSfan5 <sfan5@live.de>2014-03-15 14:51:00 +0100
commit362ef5f6ced862daa4733034810d0b07e2ad5d89 (patch)
treebeca839a42d19ec135f84c4c0b894634d281a07b /src/script/common/c_internal.cpp
parentd753d352f15ac3586a80b42dd4da6aca518c8ec8 (diff)
downloadminetest-362ef5f6ced862daa4733034810d0b07e2ad5d89.tar.gz
minetest-362ef5f6ced862daa4733034810d0b07e2ad5d89.tar.bz2
minetest-362ef5f6ced862daa4733034810d0b07e2ad5d89.zip
Make sure we get a stacktrace for as many lua errors as possible
Diffstat (limited to 'src/script/common/c_internal.cpp')
-rw-r--r--src/script/common/c_internal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/common/c_internal.cpp b/src/script/common/c_internal.cpp
index 90846676f..b7dfb178c 100644
--- a/src/script/common/c_internal.cpp
+++ b/src/script/common/c_internal.cpp
@@ -71,7 +71,7 @@ void script_error(lua_State *L)
{
const char *s = lua_tostring(L, -1);
std::string str(s ? s : "");
- throw LuaError(NULL, str);
+ throw LuaError(L, str);
}
// Push the list of callbacks (a lua table).