Bump Vim version to 8.0 and applied patches

This commit is contained in:
James McCoy 2017-04-08 22:50:50 -04:00
parent dabd9ef44b
commit 06ec15121a
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB
3 changed files with 577 additions and 2293 deletions

View File

@ -310,7 +310,7 @@ list_vim_patches() {
# Get missing Vim commits # Get missing Vim commits
local vim_commits local vim_commits
vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v7.4.1979..HEAD)" vim_commits="$(cd "${VIM_SOURCE_DIR}" && git log --reverse --format='%H' v8.0.0000..HEAD)"
local vim_commit local vim_commit
for vim_commit in ${vim_commits}; do for vim_commit in ${vim_commits}; do

File diff suppressed because it is too large Load Diff

View File

@ -10,14 +10,14 @@ extern char* longVersion;
// //
// Vim version number, name, etc. Patchlevel is defined in version.c. // Vim version number, name, etc. Patchlevel is defined in version.c.
// //
#define VIM_VERSION_MAJOR 7 #define VIM_VERSION_MAJOR 8
#define VIM_VERSION_MINOR 4 #define VIM_VERSION_MINOR 0
#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR) #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
// used for the runtime directory name // used for the runtime directory name
#define VIM_VERSION_NODOT "vim74" #define VIM_VERSION_NODOT "vim80"
// swap file compatibility (max. length is 6 chars) // swap file compatibility (max. length is 6 chars)
#define VIM_VERSION_SHORT "7.4" #define VIM_VERSION_SHORT "8.0"
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "version.h.generated.h" # include "version.h.generated.h"