1
0
forked from aniani/vim

patch 8.2.2766: test failure

Problem:    Test failure.
Solution:   Add change to Vim9 compilation error message.
This commit is contained in:
Bram Moolenaar 2021-04-14 20:54:07 +02:00
parent 0e3ff19196
commit b141926890
2 changed files with 3 additions and 1 deletions

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
2766,
/**/ /**/
2765, 2765,
/**/ /**/

View File

@ -6472,7 +6472,7 @@ compile_assignment(char_u *arg, exarg_T *eap, cmdidx_T cmdidx, cctx_T *cctx)
goto theend; goto theend;
if (range) if (range)
{ {
semsg(_(e_cannot_use_range_with_assignment_str), semsg(_(e_cannot_use_range_with_assignment_operator_str),
var_start); var_start);
return FAIL; return FAIL;
} }