# HG changeset patch # User Bram Moolenaar # Date 1618426805 -7200 # Node ID 385ccfd6b6de1ceb66c2a0e66e3ea83dfcb992f4 # Parent 7d089f18016d6ab23a3aa74495e87c88fe64a9f3 patch 8.2.2766: test failure Commit: https://github.com/vim/vim/commit/b1419268901b194b295b7cea18a1d0968f9dddfc Author: Bram Moolenaar Date: Wed Apr 14 20:54:07 2021 +0200 patch 8.2.2766: test failure Problem: Test failure. Solution: Add change to Vim9 compilation error message. diff --git a/src/version.c b/src/version.c --- 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 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -6472,7 +6472,7 @@ compile_assignment(char_u *arg, exarg_T 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; }