** Similar to 'luaD_call', but does not allow yields during the call. */
| 652 | ** Similar to 'luaD_call', but does not allow yields during the call. |
| 653 | */ |
| 654 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 655 | ccall(L, func, nResults, nyci); |
| 656 | } |
| 657 | |
| 658 | |
| 659 | /* |
no test coverage detected