summaryrefslogtreecommitdiffstats
path: root/src/dict.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-13 22:47:35 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-13 22:47:35 +0200
commitbc4c505166dc82911553206bb0c2133c6ac94aa1 (patch)
tree14a6624ace74cef5d79c55c818012042fef3d03e /src/dict.c
parentcdd70f09a5340c3d7ae873f1aaaf9847f27410cc (diff)
patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444
Problem: Error messages are spread out and names can be confusing. Solution: Start moving error messages to a separate file and use clear names.
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dict.c b/src/dict.c
index a5569e68b6..b3517309ae 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -847,7 +847,7 @@ eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
if (evaluate)
{
if (*skipwhite(*arg) == ':')
- semsg(_(e_no_white_before), ":");
+ semsg(_(e_no_white_space_allowed_before), ":");
else
semsg(_(e_missing_dict_colon), *arg);
}
@@ -866,7 +866,7 @@ eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
}
if (vim9script && (*arg)[1] != NUL && !VIM_ISWHITE((*arg)[1]))
{
- semsg(_(e_white_after), ":");
+ semsg(_(e_white_space_required_after), ":");
clear_tv(&tvkey);
goto failret;
}
@@ -909,7 +909,7 @@ eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
{
if (vim9script && (*arg)[1] != NUL && !VIM_ISWHITE((*arg)[1]))
{
- semsg(_(e_white_after), ",");
+ semsg(_(e_white_space_required_after), ",");
goto failret;
}
*arg = skipwhite(*arg + 1);
@@ -924,7 +924,7 @@ eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
if (evaluate)
{
if (**arg == ',')
- semsg(_(e_no_white_before), ",");
+ semsg(_(e_no_white_space_allowed_before), ",");
else
semsg(_(e_missing_dict_comma), *arg);
}