diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 16:01:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 16:01:23 +0000 |
commit | 0699b040e6794d27ffdca241a4358d7c31876385 (patch) | |
tree | 3c2f9f91171411d8c69c6c1613c6c590cfe7d8d8 /src/typval.c | |
parent | 74409f62790a93daf0965c71da01ff76aa0fa5a5 (diff) | |
download | vim-git-0699b040e6794d27ffdca241a4358d7c31876385.tar.gz |
patch 8.2.3971: build failsv8.2.3971
Problem: Build fails.
Solution: Use the right error message name.
Diffstat (limited to 'src/typval.c')
-rw-r--r-- | src/typval.c | 2 |
1 files changed, 1 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); |