comparison src/proto/eval.pro @ 18966:6bd715870e32 v8.2.0044

patch 8.2.0044: expression type is used inconsistently Commit: https://github.com/vim/vim/commit/07a3db89b8953bd0964895badb3b662f7514bc10 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 25 18:14:14 2019 +0100 patch 8.2.0044: expression type is used inconsistently Problem: Expression type is used inconsistently. Solution: Add "ETYPE_IS" and "ETYPE_ISNOT" as separate enum values. Rename "TYPE_" to "ETYPE_" to avoid confusion.
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Dec 2019 18:15:04 +0100
parents 46f95606b9ec
children 94eda51ba9ba
comparison
equal deleted inserted replaced
18965:0eb2333df312 18966:6bd715870e32
70 void ex_echohl(exarg_T *eap); 70 void ex_echohl(exarg_T *eap);
71 int get_echo_attr(void); 71 int get_echo_attr(void);
72 void ex_execute(exarg_T *eap); 72 void ex_execute(exarg_T *eap);
73 char_u *find_option_end(char_u **arg, int *opt_flags); 73 char_u *find_option_end(char_u **arg, int *opt_flags);
74 void last_set_msg(sctx_T script_ctx); 74 void last_set_msg(sctx_T script_ctx);
75 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 ic);
76 char_u *typval_tostring(typval_T *arg); 76 char_u *typval_tostring(typval_T *arg);
77 char_u *do_string_sub(char_u *str, char_u *pat, char_u *sub, typval_T *expr, char_u *flags); 77 char_u *do_string_sub(char_u *str, char_u *pat, char_u *sub, typval_T *expr, char_u *flags);
78 /* vim: set ft=c : */ 78 /* vim: set ft=c : */