]> granicus.if.org Git - vim/commitdiff
patch 7.4.2292 v7.4.2292
authorBram Moolenaar <Bram@vim.org>
Mon, 29 Aug 2016 20:31:24 +0000 (22:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 29 Aug 2016 20:31:24 +0000 (22:31 +0200)
Problem:    Not all systems understand %F in printf().
Solution:   Use %f.

src/message.c
src/version.c

index 264d15a1219077f31382728a80d67d361252cbd1..90c4ffb12b3516acc86fdf8caadea39e1687a138 100644 (file)
@@ -4797,7 +4797,7 @@ vim_vsnprintf(
                                    precision = max_prec;
                                l += sprintf(format + l, ".%d", (int)precision);
                            }
-                           format[l] = fmt_spec;
+                           format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
                            format[l + 1] = NUL;
 
                            str_arg_l = sprintf(tmp, format, f);
index 0d97662fb9f547385df04e1b5f41000c23ba7e36..7ff66d3aae8c6a9dc13c65e922e9812733bdfb92 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2292,
 /**/
     2291,
 /**/