** Similar to 'luaD_call', but does not allow yields during the call. */
| 781 | ** Similar to 'luaD_call', but does not allow yields during the call. |
| 782 | */ |
| 783 | void luaD_callnoyield (lua_State *L, StkId func, int nResults) { |
| 784 | ccall(L, func, nResults, nyci); |
| 785 | } |
| 786 | |
| 787 | |
| 788 | /* |
no test coverage detected