** Similar to 'luaD_call', but does not allow yields during the call */
| 514 | ** Similar to 'luaD_call', but does not allow yields during the call |
| 515 | */ |
| 516 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 517 | L->nny++; |
| 518 | luaD_call(L, func, nResults); |
| 519 | L->nny--; |
| 520 | } |
| 521 | |
| 522 | |
| 523 | /* |
no test coverage detected