lua: allow ~ path convention for --lua

Paths passed to the --lua option now follow the convention for paths
starting with ~ documented in mpv.rst.
This commit is contained in:
wm4 2014-01-21 21:23:42 +01:00
parent 63a76b3d1c
commit 0a4fc15d26
1 changed files with 3 additions and 1 deletions

View File

@ -134,11 +134,13 @@ static int load_file(struct script_ctx *ctx, const char *fname)
{
int r = 0;
lua_State *L = ctx->state;
if (luaL_loadfile(L, fname) || lua_pcall(L, 0, 0, 0)) {
char *res_name = mp_get_user_path(NULL, ctx->mpctx->global, fname);
if (luaL_loadfile(L, res_name) || lua_pcall(L, 0, 0, 0)) {
report_error(L);
r = -1;
}
assert(lua_gettop(L) == 0);
talloc_free(res_name);
return r;
}