]> granicus.if.org Git - vim/commitdiff
patch 8.2.2766: test failure v8.2.2766
authorBram Moolenaar <Bram@vim.org>
Wed, 14 Apr 2021 18:54:07 +0000 (20:54 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 14 Apr 2021 18:54:07 +0000 (20:54 +0200)
Problem:    Test failure.
Solution:   Add change to Vim9 compilation error message.

src/version.c
src/vim9compile.c

index 0127c2c51c52140a545e31555059bef8e9933345..cdf37d86f0a2de6f7492ce91be2d053b82d86ad2 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2766,
 /**/
     2765,
 /**/
index 0ada441a4beed71daecce7df50367ccd4ff92af8..62861140558f5b2dcc550b1d8e214b3305c5ba6c 100644 (file)
@@ -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;
                            }