Re: [Pipmak-Devel] Build 170: First impression..
Status: Alpha
Brought to you by:
cwalther
From: Christian W. <cwa...@gm...> - 2008-01-04 15:24:13
|
Andrea Viarengo wrote: > inspect the sub-table "coroutine", and after click on the back arrow to > return to _G table, in this case I get the error, and you? Nope, no error here. Maybe try this modification to bypass the extended error handling from r162: --- source/misc.c (revision 170) +++ source/misc.c (working copy) @@ -107,7 +107,7 @@ lua_pushliteral(L, "_TRACEBACK"); lua_rawget(L, LUA_GLOBALSINDEX); /* get traceback function (from debug library) */ lua_insert(L, base); /* put it under chunk and args */ - status = lua_pcall(L, nargs, nresults, base); + status = lua_pcall(L, nargs, nresults, 0); lua_remove(L, base); /* remove traceback function */ return status; } -Christian |