# HG changeset patch # User Christian Brabandt # Date 1528830905 -7200 # Node ID 39ec4b90e4a7079175dff88b66b89607721c59c4 # Parent 57925937db41b9a59f4cb6ecb1f7bf15f41f3d59 patch 8.1.0051: MS-Windows: missing #endif commit https://github.com/vim/vim/commit/79c6b51e403d4ea755b6637b01d1426a06ca9f9a Author: Bram Moolenaar Date: Tue Jun 12 21:11:12 2018 +0200 patch 8.1.0051: MS-Windows: missing #endif Problem: MS-Windows: missing #endif. Solution: Add the #endif. diff --git a/src/os_win32.c b/src/os_win32.c --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5322,6 +5322,7 @@ win32_build_env(dict_T *env, garray_T *g # endif } } +# endif } void diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 51, +/**/ 50, /**/ 49,