comparison src/proto/typval.pro @ 28674:38f7a132bba3 v8.2.4861

patch 8.2.4861: it is not easy to restore saved mappings Commit: https://github.com/vim/vim/commit/51d04d16f21e19d6eded98f9530d84089102f925 Author: Ernie Rael <errael@raelity.com> Date: Wed May 4 15:40:22 2022 +0100 patch 8.2.4861: it is not easy to restore saved mappings Problem: It is not easy to restore saved mappings. Solution: Make mapset() accept a dict argument. (Ernie Rael, closes https://github.com/vim/vim/issues/10295)
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 May 2022 16:45:03 +0200
parents e6e3abc28c7a
children 723c7d940cba
comparison
equal deleted inserted replaced
28673:1bb2e8f5cc4b 28674:38f7a132bba3
7 varnumber_T tv_get_number(typval_T *varp); 7 varnumber_T tv_get_number(typval_T *varp);
8 varnumber_T tv_get_number_chk(typval_T *varp, int *denote); 8 varnumber_T tv_get_number_chk(typval_T *varp, int *denote);
9 varnumber_T tv_get_bool(typval_T *varp); 9 varnumber_T tv_get_bool(typval_T *varp);
10 varnumber_T tv_get_bool_chk(typval_T *varp, int *denote); 10 varnumber_T tv_get_bool_chk(typval_T *varp, int *denote);
11 float_T tv_get_float(typval_T *varp); 11 float_T tv_get_float(typval_T *varp);
12 int check_for_unknown_arg(typval_T *args, int idx);
12 int check_for_string_arg(typval_T *args, int idx); 13 int check_for_string_arg(typval_T *args, int idx);
13 int check_for_nonempty_string_arg(typval_T *args, int idx); 14 int check_for_nonempty_string_arg(typval_T *args, int idx);
14 int check_for_opt_string_arg(typval_T *args, int idx); 15 int check_for_opt_string_arg(typval_T *args, int idx);
15 int check_for_number_arg(typval_T *args, int idx); 16 int check_for_number_arg(typval_T *args, int idx);
16 int check_for_opt_number_arg(typval_T *args, int idx); 17 int check_for_opt_number_arg(typval_T *args, int idx);