mirror of https://github.com/mpv-player/mpv
lua: change mp.get_env_list() to utils.get_env_list()
It's documented (twice) at utils, and logically it's the correct place for it.
This commit is contained in:
parent
b67c7a23b8
commit
9301cb78a8
|
@ -1238,7 +1238,6 @@ static const struct fn_entry main_fns[] = {
|
|||
FN_ENTRY(get_wakeup_pipe),
|
||||
FN_ENTRY(raw_hook_add),
|
||||
FN_ENTRY(raw_hook_continue),
|
||||
FN_ENTRY(get_env_list),
|
||||
{0}
|
||||
};
|
||||
|
||||
|
@ -1250,6 +1249,7 @@ static const struct fn_entry utils_fns[] = {
|
|||
FN_ENTRY(getpid),
|
||||
AF_ENTRY(parse_json),
|
||||
AF_ENTRY(format_json),
|
||||
FN_ENTRY(get_env_list),
|
||||
{0}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue