summaryrefslogtreecommitdiffstats
path: root/src/proto/list.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-04 14:41:14 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-04 14:41:14 +0200
commit1e1d30048e722906a13665bd6c3c24c87eb2fe25 (patch)
treefd5236bfbab6ad7cd51d758a91f1c41f02d15b51 /src/proto/list.pro
parent19c8fe1925f4f7ffa1cc46e64d8bb8b1665ac437 (diff)
patch 8.1.1978: the eval.c file is too bigv8.1.1978
Problem: The eval.c file is too big. Solution: Move filter() and map() to list.c.
Diffstat (limited to 'src/proto/list.pro')
-rw-r--r--src/proto/list.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/list.pro b/src/proto/list.pro
index 3102bb288d..7a1ce7ac30 100644
--- a/src/proto/list.pro
+++ b/src/proto/list.pro
@@ -41,4 +41,6 @@ void f_list2str(typval_T *argvars, typval_T *rettv);
void list_remove(typval_T *argvars, typval_T *rettv, char_u *arg_errmsg);
void f_sort(typval_T *argvars, typval_T *rettv);
void f_uniq(typval_T *argvars, typval_T *rettv);
+void f_filter(typval_T *argvars, typval_T *rettv);
+void f_map(typval_T *argvars, typval_T *rettv);
/* vim: set ft=c : */