comparison src/errors.h @ 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 bdf11d8e3df3
children 6f8d3470fa90
comparison
equal deleted inserted replaced
26637:eeac85e187e7 26638:6fd15d82e898
841 EXTERN char e_highlight_group_name_too_long[] 841 EXTERN char e_highlight_group_name_too_long[]
842 INIT(= N_("E1249: Highlight group name too long")); 842 INIT(= N_("E1249: Highlight group name too long"));
843 EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[] 843 EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
844 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob")); 844 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
845 EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[] 845 EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
846 INIT(= N_("E1228: List, Dictionary, Blob or String required for argument %d")); 846 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
847 EXTERN char e_string_list_or_blob_required_for_argument_nr[]
848 INIT(= N_("E1252: String, List or Blob required for argument %d"));
849 EXTERN char e_string_expected_for_argument_nr[]
850 INIT(= N_("E1253: String expected for argument %d"));