raise an error while running the message handler */
| 198 | |
| 199 | /* raise an error while running the message handler */ |
| 200 | l_noret luaD_errerr (lua_State *L) { |
| 201 | TString *msg = luaS_newliteral(L, "error in error handling"); |
| 202 | setsvalue2s(L, L->top.p, msg); |
| 203 | L->top.p++; /* assume EXTRA_STACK */ |
| 204 | luaD_throw(L, LUA_ERRERR); |
| 205 | } |
| 206 | |
| 207 | |
| 208 | /* |
no test coverage detected