patch 9.0.1905: FEAT_FLOAT no longer defined
Commit:
https://github.com/vim/vim/commit/0483e49f90d85f5172f2050426913ac718f1c176
Author: dundargoc <[email protected]>
Date: Sun Sep 17 16:58:22 2023 +0200
patch 9.0.1905: FEAT_FLOAT no longer defined
Problem: FEAT_FLOAT no longer defined
Solution: Remove last existing FEAT_FLOAT ifdefs in
message_test
Remove FEAT_FLOAT as that should always be true
FEAT_FLOAT has been removed in v9.0.0491 (73e28dcc6125f616cf1f2) but
unfortunately, it was forgotten to remove it from message_test.c. So
let's remove the last mentioned ifdefs which are now unused.
closes: #13106
Signed-off-by: Christian Brabandt <[email protected]>
Co-authored-by: dundargoc <[email protected]>
diff --git a/src/message_test.c b/src/message_test.c
index 4d5288937..62f777247 100644
--- a/src/message_test.c
+++ b/src/message_test.c
@@ -225,7 +225,6 @@ test_vim_snprintf(void)
assert(bsize == 0 || STRNCMP(buf, "one two", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '
-#ifdef FEAT_FLOAT
n = vim_snprintf(buf, bsize, "%f", 1.234);
assert(n == 8);
assert(bsize == 0 || STRNCMP(buf, "1.234000", bsize_int) == 0);
@@ -255,7 +254,6 @@ test_vim_snprintf(void)
assert(n == 9);
assert(bsize == 0 || STRNCMP(buf, "-0.000000", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '
-#endif
n = vim_snprintf(buf, bsize, "%s", "漢語");
assert(n == 6);
diff --git a/src/version.c b/src/version.c
index 76f462eda..c9e2e2cc6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -699,6 +699,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1905,
/**/
1904,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1qhtUG-00GcPr-Pf%40256bit.org.