diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-11 19:47:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 19:47:24 +0100 |
commit | 965f1fd6fd34ada255d79a6a6217a9fdfebd60ef (patch) | |
tree | 06e5500195b25df8039120db697521dd3595bc2b /src/nvim/api/vim.c | |
parent | 76769b8a1f5b34f4b0cef389597cec2796ca91b7 (diff) | |
parent | 1201145b6893703fb351f51d9f2c742bd6946403 (diff) | |
download | rneovim-965f1fd6fd34ada255d79a6a6217a9fdfebd60ef.tar.gz rneovim-965f1fd6fd34ada255d79a6a6217a9fdfebd60ef.tar.bz2 rneovim-965f1fd6fd34ada255d79a6a6217a9fdfebd60ef.zip |
Merge pull request #17439 from groves/1750
feat: restore --remote
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index ebf4f65c91..b691dee2ef 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1997,7 +1997,7 @@ Array nvim_get_proc_children(Integer pid, Error *err) DLOG("fallback to vim._os_proc_children()"); Array a = ARRAY_DICT_INIT; ADD(a, INTEGER_OBJ(pid)); - String s = cstr_to_string("return vim._os_proc_children(select(1, ...))"); + String s = cstr_to_string("return vim._os_proc_children(...)"); Object o = nlua_exec(s, a, err); api_free_string(s); api_free_array(a); |