** Similar to 'luaD_call', but does not allow yields during the call */
| 533 | ** Similar to 'luaD_call', but does not allow yields during the call |
| 534 | */ |
| 535 | void luaD_callnoyield(lua_State *L, StkId func, int nResults) { |
| 536 | L->nny++; |
| 537 | luaD_call(L, func, nResults); |
| 538 | L->nny--; |
| 539 | } |
| 540 | |
| 541 | |
| 542 | /* |
no test coverage detected