changeset 26885:ed39730119bd v8.2.3971

patch 8.2.3971: build fails Commit: https://github.com/vim/vim/commit/0699b040e6794d27ffdca241a4358d7c31876385 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 1 16:01:23 2022 +0000 patch 8.2.3971: build fails Problem: Build fails. Solution: Use the right error message name.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jan 2022 17:15:03 +0100
parents 62ab6a14b597
children 8569717aef6a
files src/typval.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/typval.c
+++ b/src/typval.c
@@ -939,7 +939,7 @@ tv_get_string_buf_chk_strict(typval_T *v
 #ifdef FEAT_FLOAT
 	    if (strict)
 	    {
-		emsg(_(e_float_as_string));
+		emsg(_(e_using_float_as_string));
 		break;
 	    }
 	    vim_snprintf((char *)buf, NUMBUFLEN, "%g", varp->vval.v_float);
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3971,
+/**/
     3970,
 /**/
     3969,