summaryrefslogtreecommitdiff
path: root/src/list.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-07 18:06:29 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-07 18:06:29 +0100
commitba98fb54aefada4c36390add4c7dd90b93e7e5bb (patch)
treeb18dcd21c820d42452a935560f3fcee59e700913 /src/list.c
parent0123cc1e1422003704cc6941916dd75e61fb7976 (diff)
downloadvim-git-ba98fb54aefada4c36390add4c7dd90b93e7e5bb.tar.gz
patch 8.2.2486: Vim9: some errors for white space do not show contextv8.2.2486
Problem: Vim9: some errors for white space do not show context. Solution: Include the text at the error.
Diffstat (limited to 'src/list.c')
-rw-r--r--src/list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/list.c b/src/list.c
index c93a66d81..4d33aa6e0 100644
--- a/src/list.c
+++ b/src/list.c
@@ -1328,7 +1328,8 @@ eval_list(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int do_error)
if (do_error)
{
if (**arg == ',')
- semsg(_(e_no_white_space_allowed_before_str), ",");
+ semsg(_(e_no_white_space_allowed_before_str_str),
+ ",", *arg);
else
semsg(_("E696: Missing comma in List: %s"), *arg);
}