Patch 7.4.2292 (after 7.4.2291)
Problem: Not all systems understand %F in printf().
Solution: Use %f.
Files: src/message.c
*** ../vim-7.4.2291/src/message.c 2016-08-29 21:55:16.360528486 +0200
--- src/message.c 2016-08-29 22:25:08.441090524 +0200
***************
*** 4797,4803 ****
precision = max_prec;
l += sprintf(format + l, ".%d", (int)precision);
}
! format[l] = fmt_spec;
format[l + 1] = NUL;
str_arg_l = sprintf(tmp, format, f);
--- 4797,4803 ----
precision = max_prec;
l += sprintf(format + l, ".%d", (int)precision);
}
! format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
format[l + 1] = NUL;
str_arg_l = sprintf(tmp, format, f);
*** ../vim-7.4.2291/src/version.c 2016-08-29 21:55:16.360528486 +0200
--- src/version.c 2016-08-29 22:26:50.300205471 +0200
***************
*** 765,766 ****
--- 765,768 ----
{ /* Add new patch number below this line */
+ /**/
+ 2292,
/**/
--
hundred-and-one symptoms of being an internet addict:
107. When using your phone you forget that you don't have to use your
keyboard.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
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].
For more options, visit https://groups.google.com/d/optout.