| 272 | |
| 273 | |
| 274 | static int load_aux (lua_State *L, int status) { |
| 275 | if (status == 0) /* OK? */ |
| 276 | return 1; |
| 277 | else { |
| 278 | lua_pushnil(L); |
| 279 | lua_insert(L, -2); /* put before error message */ |
| 280 | return 2; /* return nil plus error message */ |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | |
| 285 | static int luaB_loadstring (lua_State *L) { |
no test coverage detected