summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-28 21:04:24 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-28 21:04:24 +0200
commit08aac3c6192f0103cb87e280270a32b50e653be1 (patch)
treeea2842918dbdaab787aec93332fd6db4816c684c /src/errors.h
parentee8580e52e767916e2a95e8ac0732fd8a5ae0651 (diff)
patch 8.2.1535: it is not possible to specify cell widths of charactersv8.2.1535
Problem: It is not possible to specify cell widths of characters. Solution: Add setcellwidths().
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index ffcbdefa3a..4b3e5debe8 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -238,4 +238,16 @@ EXTERN char e_string_list_dict_or_blob_required[]
INIT(= N_("E1107: String, List, Dict or Blob required"));
EXTERN char e_item_not_found_str[]
INIT(= N_("E1108: Item not found: %s"));
+EXTERN char e_list_item_nr_is_not_list[]
+ INIT(= N_("E1109: List item %d is not a List"));
+EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
+ INIT(= N_("E1110: List item %d does not contain 3 numbers"));
+EXTERN char e_list_item_nr_range_invalid[]
+ INIT(= N_("E1111: List item %d range invalid"));
+EXTERN char e_list_item_nr_cell_width_invalid[]
+ INIT(= N_("E1112: List item %d cell width invalid"));
+EXTERN char e_overlapping_ranges_for_nr[]
+ INIT(= N_("E1113: Overlapping ranges for %lx"));
+EXTERN char e_only_values_of_0x100_and_higher_supported[]
+ INIT(= N_("E1114: Only values of 0x100 and higher supported"));
#endif