** Similar to 'luaD_call', but does not allow yields during the call */
| 505 | ** Similar to 'luaD_call', but does not allow yields during the call |
| 506 | */ |
| 507 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 508 | L->nny++; |
| 509 | luaD_call(L, func, nResults); |
| 510 | L->nny--; |
| 511 | } |
| 512 | |
| 513 | |
| 514 | /* |
no test coverage detected