# HG changeset patch # User Christian Brabandt # Date 1480005904 -3600 # Node ID 401dbd352fd6680b39cc26d67ca221a1d254495e # Parent 909ea30c733e1b5c8b9bac93aeadee7e25e5523c commit https://github.com/vim/vim/commit/58c358753ef47e217e18c0bf8a2fca9d1ea23a8e Author: Bram Moolenaar Date: Thu Nov 24 17:33:17 2016 +0100 patch 8.0.0098 Problem: Can't build on MS-Windows. Solution: Add missing parenthesis. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 98, +/**/ 97, /**/ 96, diff --git a/src/vim.h b/src/vim.h --- a/src/vim.h +++ b/src/vim.h @@ -2512,7 +2512,7 @@ typedef enum #else # if defined(WIN32) # define ELAPSED_TICKCOUNT -# define ELAPSED_INIT(v) v = GetTickCount +# define ELAPSED_INIT(v) v = GetTickCount() # define ELAPSED_FUNC(v) elapsed(v) # define ELAPSED_TYPE DWORD long elapsed(DWORD start_tick);