comparison src/errors.h @ 21971:0bc43a704f56 v8.2.1535

patch 8.2.1535: it is not possible to specify cell widths of characters Commit: https://github.com/vim/vim/commit/08aac3c6192f0103cb87e280270a32b50e653be1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 28 21:04:24 2020 +0200 patch 8.2.1535: it is not possible to specify cell widths of characters Problem: It is not possible to specify cell widths of characters. Solution: Add setcellwidths().
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Aug 2020 21:15:03 +0200
parents 9fc27a955f00
children 2030f8267db9
comparison
equal deleted inserted replaced
21970:7c76b6dbc14d 21971:0bc43a704f56
236 INIT(= N_("E1106: %d arguments too many")); 236 INIT(= N_("E1106: %d arguments too many"));
237 EXTERN char e_string_list_dict_or_blob_required[] 237 EXTERN char e_string_list_dict_or_blob_required[]
238 INIT(= N_("E1107: String, List, Dict or Blob required")); 238 INIT(= N_("E1107: String, List, Dict or Blob required"));
239 EXTERN char e_item_not_found_str[] 239 EXTERN char e_item_not_found_str[]
240 INIT(= N_("E1108: Item not found: %s")); 240 INIT(= N_("E1108: Item not found: %s"));
241 EXTERN char e_list_item_nr_is_not_list[]
242 INIT(= N_("E1109: List item %d is not a List"));
243 EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
244 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
245 EXTERN char e_list_item_nr_range_invalid[]
246 INIT(= N_("E1111: List item %d range invalid"));
247 EXTERN char e_list_item_nr_cell_width_invalid[]
248 INIT(= N_("E1112: List item %d cell width invalid"));
249 EXTERN char e_overlapping_ranges_for_nr[]
250 INIT(= N_("E1113: Overlapping ranges for %lx"));
251 EXTERN char e_only_values_of_0x100_and_higher_supported[]
252 INIT(= N_("E1114: Only values of 0x100 and higher supported"));
241 #endif 253 #endif