comparison src/proto/eval.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 4d63d47d87ef
children 46f95606b9ec
comparison
equal deleted inserted replaced
17963:5de9b5831cd4 17964:6d4d3bce365d
9 char_u *eval_to_string_skip(char_u *arg, char_u **nextcmd, int skip); 9 char_u *eval_to_string_skip(char_u *arg, char_u **nextcmd, int skip);
10 int skip_expr(char_u **pp); 10 int skip_expr(char_u **pp);
11 char_u *eval_to_string(char_u *arg, char_u **nextcmd, int convert); 11 char_u *eval_to_string(char_u *arg, char_u **nextcmd, int convert);
12 char_u *eval_to_string_safe(char_u *arg, char_u **nextcmd, int use_sandbox); 12 char_u *eval_to_string_safe(char_u *arg, char_u **nextcmd, int use_sandbox);
13 varnumber_T eval_to_number(char_u *expr); 13 varnumber_T eval_to_number(char_u *expr);
14 list_T *eval_spell_expr(char_u *badword, char_u *expr);
15 int get_spellword(list_T *list, char_u **pp);
16 typval_T *eval_expr(char_u *arg, char_u **nextcmd); 14 typval_T *eval_expr(char_u *arg, char_u **nextcmd);
17 int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv); 15 int call_vim_function(char_u *func, int argc, typval_T *argv, typval_T *rettv);
18 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv); 16 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv);
19 void *call_func_retstr(char_u *func, int argc, typval_T *argv); 17 void *call_func_retstr(char_u *func, int argc, typval_T *argv);
20 void *call_func_retlist(char_u *func, int argc, typval_T *argv); 18 void *call_func_retlist(char_u *func, int argc, typval_T *argv);
76 void last_set_msg(sctx_T script_ctx); 74 void last_set_msg(sctx_T script_ctx);
77 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic); 75 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic);
78 char_u *typval_tostring(typval_T *arg); 76 char_u *typval_tostring(typval_T *arg);
79 int modify_fname(char_u *src, int tilde_file, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen); 77 int modify_fname(char_u *src, int tilde_file, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen);
80 char_u *do_string_sub(char_u *str, char_u *pat, char_u *sub, typval_T *expr, char_u *flags); 78 char_u *do_string_sub(char_u *str, char_u *pat, char_u *sub, typval_T *expr, char_u *flags);
81 void filter_map(typval_T *argvars, typval_T *rettv, int map);
82 /* vim: set ft=c : */ 79 /* vim: set ft=c : */