summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-20 22:43:52 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-20 22:43:52 +0200
commit10e4f12bf4cd08328618bbf4e57a15435296e586 (patch)
tree59f1ca38433653ec8583186995075d7afe5608d3 /src/errors.h
parentb816dae16dbeec91ccb6fd1c0289b86b4ad5d7b3 (diff)
patch 8.2.1719: Vim9: no error if comma is missing in between argumentsv8.2.1719
Problem: Vim9: no error if comma is missing in between arguments. Solution: Give an error message.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index d12e97f6f3..0246fa103a 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -268,4 +268,6 @@ EXTERN char e_cannot_change_dict_item[]
INIT(= N_("E1121: Cannot change dict item"));
EXTERN char e_variable_is_locked_str[]
INIT(= N_("E1122: Variable is locked: %s"));
+EXTERN char e_missing_comma_before_argument_str[]
+ INIT(= N_("E1123: Missing comma before argument: %s"));
#endif