** Similar to 'luaD_call', but does not allow yields during the call. */
| 592 | ** Similar to 'luaD_call', but does not allow yields during the call. |
| 593 | */ |
| 594 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 595 | ccall(L, func, nResults, nyci); |
| 596 | } |
| 597 | |
| 598 | |
| 599 | /* |
no test coverage detected