We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0418609 commit 965ed14Copy full SHA for 965ed14
2 files changed
src/message.c
@@ -4797,7 +4797,7 @@ vim_vsnprintf(
4797
precision = max_prec;
4798
l += sprintf(format + l, ".%d", (int)precision);
4799
}
4800
- format[l] = fmt_spec;
+ format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
4801
format[l + 1] = NUL;
4802
4803
str_arg_l = sprintf(tmp, format, f);
src/version.c
@@ -763,6 +763,8 @@ static char *(features[]) =
763
764
static int included_patches[] =
765
{ /* Add new patch number below this line */
766
+/**/
767
+ 2292,
768
/**/
769
2291,
770
0 commit comments