diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-03-15 16:01:06 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-03-15 16:01:06 -0400 |
commit | f8b75555586e0e67d8320a804b9e077d29b96403 (patch) | |
tree | f992793df77298fab89185848d81ebe5f05da3a6 /src/script/common/c_internal.cpp | |
parent | 23be6450a115954b281c045aefacbefba6837b6f (diff) | |
download | minetest-f8b75555586e0e67d8320a804b9e077d29b96403.tar.gz minetest-f8b75555586e0e67d8320a804b9e077d29b96403.tar.bz2 minetest-f8b75555586e0e67d8320a804b9e077d29b96403.zip |
Revert "Make sure we get a stacktrace for as many lua errors as possible"
This reverts commit 362ef5f6ced862daa4733034810d0b07e2ad5d89.
Stack tracebacks couldn't be generated in LuaError::LuaError anyway and this
caused a second, empty traceback in most cases. In cases where there wasn't
annother traceback the stack had already unwound and the traceback was empty.
Diffstat (limited to 'src/script/common/c_internal.cpp')
-rw-r--r-- | src/script/common/c_internal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/common/c_internal.cpp b/src/script/common/c_internal.cpp index b7dfb178c..90846676f 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(L, str); + throw LuaError(NULL, str); } // Push the list of callbacks (a lua table). |