diff options
author | James McCoy <jamessan@jamessan.com> | 2017-02-27 09:48:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 09:48:52 -0500 |
commit | be65fd88f40cc0a955b25f7ef78bd954f3986046 (patch) | |
tree | d62663ce9cd558a8d9a33ec51a1871f7fca96777 | |
parent | 6041fd7a86e1fcebac96eb4d30fe2028089127b3 (diff) | |
parent | 0882ca50d805e23dad955ab6a204ee021af6d7d8 (diff) | |
download | rneovim-be65fd88f40cc0a955b25f7ef78bd954f3986046.tar.gz rneovim-be65fd88f40cc0a955b25f7ef78bd954f3986046.tar.bz2 rneovim-be65fd88f40cc0a955b25f7ef78bd954f3986046.zip |
Merge pull request #6186 from jamessan/base-vim-patch
vim-patch.sh: Bump base Vim version to 7.4.1980
-rwxr-xr-x | scripts/vim-patch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index 75915372a3..bf4b7d9080 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -305,9 +305,9 @@ list_vim_patches() { printf "\nVim patches missing from Neovim:\n" - # Get commits since 7.4.602. + # Get missing Vim commits local vim_commits - vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v7.4.602..HEAD)" + vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v7.4.1979..HEAD)" local vim_commit for vim_commit in ${vim_commits}; do |