summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-20 21:32:54 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-20 21:32:54 +0000
commitdd5893be34649482ed62525430fb8baa1ec273ce (patch)
treeb53ae04f33ac4c243c48a4650947d0792aa91c6c /src/errors.h
parente615db06046312e74886fa1ef98feb5a9db2a7c3 (diff)
patch 8.2.4167: Vim9: error message for old style importv8.2.4167
Problem: Vim9: error message for old style import. Solution: Use another error message. Add a test.
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 7ad1076dfc..3fd265f43d 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -2966,8 +2966,7 @@ EXTERN char e_argument_name_shadows_existing_variable_str[]
INIT(= N_("E1167: Argument name shadows existing variable: %s"));
EXTERN char e_argument_already_declared_in_script_str[]
INIT(= N_("E1168: Argument already declared in the script: %s"));
-EXTERN char e_import_as_name_not_supported_here[]
- INIT(= N_("E1169: 'import * as {name}' not supported here"));
+// E1169 unused
EXTERN char e_cannot_use_hash_curly_to_start_comment[]
INIT(= N_("E1170: Cannot use #{ to start a comment"));
EXTERN char e_missing_end_block[]