aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--src/ldo.js10
2 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 0fbfc4e..b27dc58 100644
--- a/README.md
+++ b/README.md
@@ -110,6 +110,7 @@ Alias for `lua_pushcclosure`.
Sets a function to be called if a native JavaScript error is thrown across a lua pcall.
The function will be run as if it were a message handler (see https://www.lua.org/manual/5.3/manual.html#2.3).
+The current message handler will be run after the native error handler returns.
### `b = lua_isproxy(p, L)`
diff --git a/src/ldo.js b/src/ldo.js
index c4619e5..3bbcec6 100644
--- a/src/ldo.js
+++ b/src/ldo.js
@@ -283,6 +283,16 @@ const luaD_rawrunprotected = function(L, f, ud) {
lapi.lua_pushlightuserdata(L, e);
luaD_callnoyield(L, L.top - 2, 1);
+ /* Now run the message handler (if it exists) */
+ /* copy of luaG_errormsg without the throw */
+ if (L.errfunc !== 0) { /* is there an error handling function? */
+ let errfunc = L.errfunc;
+ L.stack[L.top] = L.stack[L.top - 1];
+ L.stack[L.top - 1] = L.stack[errfunc];
+ L.top++;
+ luaD_callnoyield(L, L.top - 2, 1);
+ }
+
lj.status = TS.LUA_ERRRUN;
} catch(e2) {
if (lj.status === TS.LUA_OK) {