comparison src/proto/typval.pro @ 27924:e6e3abc28c7a v8.2.4487

patch 8.2.4487: Vim9: cannot compare with v:null Commit: https://github.com/vim/vim/commit/7a2222487507eb13cccdb9a66397092775d62b8c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 1 19:23:24 2022 +0000 patch 8.2.4487: Vim9: cannot compare with v:null Problem: Vim9: cannot compare with v:null. Solution: Allow comparing anything with v:null. (closes https://github.com/vim/vim/issues/9866)
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Mar 2022 20:30:04 +0100
parents 7f4cc4e58f75
children 38f7a132bba3
comparison
equal deleted inserted replaced
27923:442d920bdf6f 27924:e6e3abc28c7a
55 char_u *tv_stringify(typval_T *varp, char_u *buf); 55 char_u *tv_stringify(typval_T *varp, char_u *buf);
56 int tv_check_lock(typval_T *tv, char_u *name, int use_gettext); 56 int tv_check_lock(typval_T *tv, char_u *name, int use_gettext);
57 void copy_tv(typval_T *from, typval_T *to); 57 void copy_tv(typval_T *from, typval_T *to);
58 int typval_compare(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic); 58 int typval_compare(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic);
59 int typval_compare_list(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res); 59 int typval_compare_list(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res);
60 int typval_compare_null(typval_T *tv1, typval_T *tv2);
60 int typval_compare_blob(typval_T *tv1, typval_T *tv2, exprtype_T type, int *res); 61 int typval_compare_blob(typval_T *tv1, typval_T *tv2, exprtype_T type, int *res);
61 int typval_compare_dict(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res); 62 int typval_compare_dict(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res);
62 int typval_compare_func(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res); 63 int typval_compare_func(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res);
63 int typval_compare_string(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res); 64 int typval_compare_string(typval_T *tv1, typval_T *tv2, exprtype_T type, int ic, int *res);
64 char_u *typval_tostring(typval_T *arg, int quotes); 65 char_u *typval_tostring(typval_T *arg, int quotes);