summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 16:01:23 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 16:01:23 +0000
commit0699b040e6794d27ffdca241a4358d7c31876385 (patch)
tree3c2f9f91171411d8c69c6c1613c6c590cfe7d8d8
parent74409f62790a93daf0965c71da01ff76aa0fa5a5 (diff)
downloadvim-git-0699b040e6794d27ffdca241a4358d7c31876385.tar.gz
patch 8.2.3971: build failsv8.2.3971
Problem: Build fails. Solution: Use the right error message name.
-rw-r--r--src/typval.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/typval.c b/src/typval.c
index 0afd572b0..1e922dc72 100644
--- a/src/typval.c
+++ b/src/typval.c
@@ -939,7 +939,7 @@ tv_get_string_buf_chk_strict(typval_T *varp, char_u *buf, int strict)
#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);
diff --git a/src/version.c b/src/version.c
index 26ecf4cfe..86c7a472a 100644
--- 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,