comparison src/proto/typval.pro @ 26638:6fd15d82e898 v8.2.3848

patch 8.2.3848: cannot use reduce() for a string Commit: https://github.com/vim/vim/commit/0ccb5842f5fb103763d106c7aa364d758343c35a Author: rbtnn <naru123456789@gmail.com> Date: Sat Dec 18 18:33:46 2021 +0000 patch 8.2.3848: cannot use reduce() for a string Problem: Cannot use reduce() for a string. Solution: Make reduce() work with a string. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/9366)
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Dec 2021 19:45:03 +0100
parents 0d2a709e2ff0
children 2fc1e528e0e1
comparison
equal deleted inserted replaced
26637:eeac85e187e7 26638:6fd15d82e898
32 int check_for_lnum_arg(typval_T *args, int idx); 32 int check_for_lnum_arg(typval_T *args, int idx);
33 int check_for_opt_lnum_arg(typval_T *args, int idx); 33 int check_for_opt_lnum_arg(typval_T *args, int idx);
34 int check_for_opt_string_or_number_arg(typval_T *args, int idx); 34 int check_for_opt_string_or_number_arg(typval_T *args, int idx);
35 int check_for_string_or_blob_arg(typval_T *args, int idx); 35 int check_for_string_or_blob_arg(typval_T *args, int idx);
36 int check_for_string_or_list_arg(typval_T *args, int idx); 36 int check_for_string_or_list_arg(typval_T *args, int idx);
37 int check_for_string_or_list_or_blob_arg(typval_T *args, int idx);
37 int check_for_opt_string_or_list_arg(typval_T *args, int idx); 38 int check_for_opt_string_or_list_arg(typval_T *args, int idx);
38 int check_for_string_or_dict_arg(typval_T *args, int idx); 39 int check_for_string_or_dict_arg(typval_T *args, int idx);
39 int check_for_string_or_number_or_list_arg(typval_T *args, int idx); 40 int check_for_string_or_number_or_list_arg(typval_T *args, int idx);
40 int check_for_opt_string_or_number_or_list_arg(typval_T *args, int idx); 41 int check_for_opt_string_or_number_or_list_arg(typval_T *args, int idx);
41 int check_for_string_or_list_or_dict_arg(typval_T *args, int idx); 42 int check_for_string_or_list_or_dict_arg(typval_T *args, int idx);