summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-17 14:42:02 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-17 14:42:02 +0000
commitea5c898b5fb60828b0223f258910f84f5c645e63 (patch)
treed8df35556cad1d7b84116c33a3dafa8bb521a560 /src/errors.h
parente08be09a08485e8c919f46c05223c1ccfdaf175d (diff)
patch 8.2.4408: Vim9: some code not covered by testsv8.2.4408
Problem: Vim9: some code not covered by tests. Solution: Add a few more tests. Correct error message. Allow unlet on dict with a number key.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/errors.h b/src/errors.h
index 8e2b9da6c6..5f2685ab3e 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3010,8 +3010,7 @@ EXTERN char e_variable_arguments_type_must_be_list_str[]
INIT(= N_("E1180: Variable arguments type must be a list: %s"));
EXTERN char e_cannot_use_underscore_here[]
INIT(= N_("E1181: Cannot use an underscore here"));
-EXTERN char e_blob_required[]
- INIT(= N_("E1182: Blob required"));
+// E1182 unused
EXTERN char e_cannot_use_range_with_assignment_operator_str[]
INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
#endif