summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-14 20:54:07 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-14 20:54:07 +0200
commitb1419268901b194b295b7cea18a1d0968f9dddfc (patch)
tree499ec07741ed12107cfcf43876538e974db26fd0
parent0e3ff1919603ee4c4a347fdf761dbdbdeb068015 (diff)
patch 8.2.2766: test failurev8.2.2766
Problem: Test failure. Solution: Add change to Vim9 compilation error message.
-rw-r--r--src/version.c2
-rw-r--r--src/vim9compile.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index 0127c2c51c..cdf37d86f0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2766,
+/**/
2765,
/**/
2764,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 0ada441a4b..6286114055 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -6472,7 +6472,7 @@ compile_assignment(char_u *arg, exarg_T *eap, cmdidx_T cmdidx, cctx_T *cctx)
goto theend;
if (range)
{
- semsg(_(e_cannot_use_range_with_assignment_str),
+ semsg(_(e_cannot_use_range_with_assignment_operator_str),
var_start);
return FAIL;
}