Skip to content

Instantly share code, notes, and snippets.

@mkottman
Created August 21, 2010 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkottman/542683 to your computer and use it in GitHub Desktop.
Save mkottman/542683 to your computer and use it in GitHub Desktop.
--- 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);
@davidm
Copy link

davidm commented Aug 21, 2010

Probably best to report to the SciTE list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment