| 107 | } |
| 108 | |
| 109 | static int dochunk(lua_State *L, int status) { |
| 110 | if (status == LUA_OK) status = docall(L, 0, 0); |
| 111 | return report(L, status); |
| 112 | } |
| 113 | |
| 114 | static int dofile(lua_State *L, const char *name) { |
| 115 | return dochunk(L, luaL_loadfile(L, name)); |