diff options
author | James McCoy <jamessan@jamessan.com> | 2016-07-08 00:27:05 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-07-08 01:45:21 -0400 |
commit | c147766389a11df0bc6cf86bb1a6bd0e22a6026b (patch) | |
tree | 50d72f0734e0efe75401d68fcb42c47ecd9183a3 /src/nvim/version.c | |
parent | 520a4f06e20c3917e75e3a413a290d9141cb0a0c (diff) | |
download | rneovim-c147766389a11df0bc6cf86bb1a6bd0e22a6026b.tar.gz rneovim-c147766389a11df0bc6cf86bb1a6bd0e22a6026b.tar.bz2 rneovim-c147766389a11df0bc6cf86bb1a6bd0e22a6026b.zip |
vim-patch:7.4.1973
Problem: On MS-Windows the package directory may be added at the end
because of forward/backward slash differences. (Matthew
Desjardins)
Solution: Ignore slash differences.
https://github.com/vim/vim/commit/4c5717ed8a81f5ae9dfe4f38b17a61fc8421054b
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 358b2cc2f0..8aa3071395 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -75,6 +75,7 @@ static char *features[] = { // clang-format off static int included_patches[] = { + 1973, 1960, 1840, 1832, |