summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-14 21:19:04 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-14 21:19:04 +0000
commitbc510064027da8024d59460c9c816aea4ffac096 (patch)
tree5054f5b794010b839bfec74808b369a726709f57 /src/errors.h
parent7a3b802bab5add34baae37ec2c1ae7ad2f1693bd (diff)
patch 8.2.4384: Vim9: error message not tested, some code not testedv8.2.4384
Problem: Vim9: error message not tested, some code not tested. Solution: Add a couple of test cases. Give an error for a command modifier without a command.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index c5a2649a5c..937c59d22b 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -2791,7 +2791,8 @@ EXTERN char e_missing_argument_type_for_str[]
// E1080 unused
EXTERN char e_cannot_unlet_str[]
INIT(= N_("E1081: Cannot unlet %s"));
-// E1082 unused
+EXTERN char e_command_modifier_without_command[]
+ INIT(= N_("E1082: Command modifier without command"));
EXTERN char e_missing_backtick[]
INIT(= N_("E1083: Missing backtick"));
EXTERN char e_cannot_delete_vim9_script_function_str[]