changeset 24452:385ccfd6b6de v8.2.2766

patch 8.2.2766: test failure Commit: https://github.com/vim/vim/commit/b1419268901b194b295b7cea18a1d0968f9dddfc Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 14 Apr 2021 21:00:05 +0200
parents 7d089f18016d
children f5ad68b7c901
files src/version.c src/vim9compile.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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;
 			    }