| 11128 | |
| 11129 | |
| 11130 | static int load_aux (lua_State *L, int status) { |
| 11131 | if (status == 0) /* OK? */ |
| 11132 | return 1; |
| 11133 | else { |
| 11134 | lua_pushnil(L); |
| 11135 | lua_insert(L, -2); /* put before error message */ |
| 11136 | return 2; /* return nil plus error message */ |
| 11137 | } |
| 11138 | } |
| 11139 | |
| 11140 | |
| 11141 | static int luaB_loadstring (lua_State *L) { |
no test coverage detected