diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-19 12:06:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 12:06:45 +0800 |
commit | c218109744e5aec702b10d4a8bf233b758dacc79 (patch) | |
tree | 91b3cff369f70f248bb06a15b6d32db77006391b /src/nvim/eval/funcs.c | |
parent | dd8781128f4b93d402bab281d11b85f2c45b987e (diff) | |
parent | 1c12f844ad6db504e1435b5e4b633eb87b932180 (diff) | |
download | rneovim-c218109744e5aec702b10d4a8bf233b758dacc79.tar.gz rneovim-c218109744e5aec702b10d4a8bf233b758dacc79.tar.bz2 rneovim-c218109744e5aec702b10d4a8bf233b758dacc79.zip |
Merge pull request #23191 from zeertzjq/vim-9.0.1007
vim-patch:9.0.{0369,0372,0426,0514,0545,0560,0561,1005,1007,1008,1009,1010,1012,1020,1021,1034}
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index 28901d6e55..d9226214c6 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -44,6 +44,7 @@ #include "nvim/eval/executor.h" #include "nvim/eval/funcs.h" #include "nvim/eval/typval.h" +#include "nvim/eval/typval_defs.h" #include "nvim/eval/userfunc.h" #include "nvim/eval/vars.h" #include "nvim/eval/window.h" @@ -3850,8 +3851,7 @@ static void f_insert(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) } /// "interrupt()" function -static void f_interrupt(typval_T *argvars FUNC_ATTR_UNUSED, typval_T *rettv FUNC_ATTR_UNUSED, - EvalFuncData fptr FUNC_ATTR_UNUSED) +static void f_interrupt(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) { got_int = true; } @@ -8523,6 +8523,13 @@ static void f_substitute(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) } } +/// "swapfilelist()" function +static void f_swapfilelist(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) +{ + tv_list_alloc_ret(rettv, kListLenUnknown); + recover_names(NULL, false, rettv->vval.v_list, 0, NULL); +} + /// "swapinfo(swap_filename)" function static void f_swapinfo(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) { |