| 1146 | |
| 1147 | |
| 1148 | static int nter_l (lua_State *L) { |
| 1149 | Instruction *p; |
| 1150 | luaL_argcheck(L, !lua_isnoneornil(L, 1), 1, "non-nil value expected"); |
| 1151 | p = newpatt(L, 1); |
| 1152 | setinst(p, IOpenCall, value2fenv(L, 1)); |
| 1153 | return 1; |
| 1154 | } |
| 1155 | |
| 1156 | |
| 1157 |
nothing calls this directly
no test coverage detected