diff options
| author | Michael Ennen <mike.ennen@gmail.com> | 2016-05-19 14:45:06 -0700 |
|---|---|---|
| committer | Michael Ennen <mike.ennen@gmail.com> | 2016-05-19 14:46:38 -0700 |
| commit | 2ebf365db909b835594d3f9a47e96551f5439b85 (patch) | |
| tree | 29310238d60db19b8db688801b3eb23c9746ec74 /src/nvim/version.c | |
| parent | 7d11cc6912b3f80a5b338323d685997c2d1e9dd3 (diff) | |
| download | rneovim-2ebf365db909b835594d3f9a47e96551f5439b85.tar.gz rneovim-2ebf365db909b835594d3f9a47e96551f5439b85.tar.bz2 rneovim-2ebf365db909b835594d3f9a47e96551f5439b85.zip | |
vim-patch:7.4.1050
Problem: Warning for unused var with tiny features. (Tony Mechelynck)
Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statements.
https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
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 3746f53e1f..af8b3b3fde 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -633,7 +633,7 @@ static int included_patches[] = { // 1053, 1052, // 1051, - // 1050, + 1050, 1049, 1048, 1047, |