Created
August 21, 2010 18:41
-
-
Save mkottman/542683 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/LuaExtension.cxx 2010-07-21 01:03:41.000000000 +0200 | |
+++ b/LuaExtension.cxx 2010-08-21 20:29:55.332214899 +0200 | |
@@ -722,7 +722,9 @@ | |
if (L) { | |
int traceback = 0; | |
if (tracebackEnabled) { | |
- lua_getglobal(L, "print"); | |
+ lua_getglobal(L, "debug"); | |
+ lua_getfield(L, -1, "traceback"); | |
+ lua_remove(L, -2); | |
if (lua_isfunction(L, -1)) { | |
traceback = lua_gettop(L) - nargs - 1; | |
lua_insert(L, traceback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Probably best to report to the SciTE list.