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:
Avi Halachmi (:avih) 2020-07-26 01:10:52 +03:00
parent b67c7a23b8
commit 9301cb78a8
1 changed files with 1 additions and 1 deletions

View File

@ -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}
};