** Similar to 'luaD_call', but does not allow yields during the call. */
| 659 | ** Similar to 'luaD_call', but does not allow yields during the call. |
| 660 | */ |
| 661 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 662 | ccall(L, func, nResults, nyci); |
| 663 | } |
| 664 | |
| 665 | |
| 666 | /* |
no test coverage detected