comparison src/proto/list.pro @ 17964:6d4d3bce365d v8.1.1978

patch 8.1.1978: the eval.c file is too big Commit: https://github.com/vim/vim/commit/1e1d30048e722906a13665bd6c3c24c87eb2fe25 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 14:41:14 2019 +0200 patch 8.1.1978: the eval.c file is too big Problem: The eval.c file is too big. Solution: Move filter() and map() to list.c.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 14:45:04 +0200
parents 0f7ae8010787
children 684a15da9929
comparison
equal deleted inserted replaced
17963:5de9b5831cd4 17964:6d4d3bce365d
39 void init_static_list(staticList10_T *sl); 39 void init_static_list(staticList10_T *sl);
40 void f_list2str(typval_T *argvars, typval_T *rettv); 40 void f_list2str(typval_T *argvars, typval_T *rettv);
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);
45 void f_map(typval_T *argvars, typval_T *rettv);
44 /* vim: set ft=c : */ 46 /* vim: set ft=c : */