comparison src/proto/list.pro @ 17970:684a15da9929 v8.1.1981

patch 8.1.1981: the evalfunc.c file is too big Commit: https://github.com/vim/vim/commit/08c308aeb5e7dfa18fa61f261b0bff79517a4883 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 17:48:15 2019 +0200 patch 8.1.1981: the evalfunc.c file is too big Problem: The evalfunc.c file is too big. Solution: Move undo functions to undo.c. Move cmdline functions to ex_getln.c. Move some container functions to list.c.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 18:00:03 +0200
parents 6d4d3bce365d
children 94eda51ba9ba
comparison
equal deleted inserted replaced
17969:bfc33cda9075 17970:684a15da9929
41 void list_remove(typval_T *argvars, typval_T *rettv, char_u *arg_errmsg); 41 void list_remove(typval_T *argvars, typval_T *rettv, char_u *arg_errmsg);
42 void f_sort(typval_T *argvars, typval_T *rettv); 42 void f_sort(typval_T *argvars, typval_T *rettv);
43 void f_uniq(typval_T *argvars, typval_T *rettv); 43 void f_uniq(typval_T *argvars, typval_T *rettv);
44 void f_filter(typval_T *argvars, typval_T *rettv); 44 void f_filter(typval_T *argvars, typval_T *rettv);
45 void f_map(typval_T *argvars, typval_T *rettv); 45 void f_map(typval_T *argvars, typval_T *rettv);
46 void f_add(typval_T *argvars, typval_T *rettv);
47 void f_count(typval_T *argvars, typval_T *rettv);
48 void f_extend(typval_T *argvars, typval_T *rettv);
49 void f_insert(typval_T *argvars, typval_T *rettv);
50 void f_remove(typval_T *argvars, typval_T *rettv);
51 void f_reverse(typval_T *argvars, typval_T *rettv);
46 /* vim: set ft=c : */ 52 /* vim: set ft=c : */