diff options
author | Jurica Bradaric <jurica.bradaric@avl.com> | 2017-03-05 22:20:48 +0100 |
---|---|---|
committer | Jurica Bradaric <jurica.bradaric@avl.com> | 2017-03-06 21:35:48 +0100 |
commit | 2f80360e9acdb32f63633e8408c00de2ef972b3b (patch) | |
tree | 2cbcdbe4dc77dcf40c5622e90bc32cb25b841b9e /src/nvim/version.c | |
parent | 483e8257e5a28893bcd1de089715f82798d0f93a (diff) | |
download | rneovim-2f80360e9acdb32f63633e8408c00de2ef972b3b.tar.gz rneovim-2f80360e9acdb32f63633e8408c00de2ef972b3b.tar.bz2 rneovim-2f80360e9acdb32f63633e8408c00de2ef972b3b.zip |
vim-patch:7.4.2220
Problem: printf() gives an error when the argument for %s is not a string.
(Ozaki Kiichi)
Solution: Behave like invoking string() on the argument. (Ken Takata)
https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 8fd9b4b74f..1e7785507f 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -220,7 +220,7 @@ static int included_patches[] = { // 2223, // 2222, // 2221, - // 2220, + 2220, 2219, // 2218 NA 2217, |