diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-12 21:11:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-12 21:11:12 +0200 |
commit | 79c6b51e403d4ea755b6637b01d1426a06ca9f9a (patch) | |
tree | 94f4668f54504e2cd0d0e209d750ce66cd0515b0 /src | |
parent | 493359eb3b10377d5c3524e91d911809b8ac7a76 (diff) | |
download | vim-git-79c6b51e403d4ea755b6637b01d1426a06ca9f9a.tar.gz |
patch 8.1.0051: MS-Windows: missing #endifv8.1.0051
Problem: MS-Windows: missing #endif.
Solution: Add the #endif.
Diffstat (limited to 'src')
-rw-r--r-- | src/os_win32.c | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/os_win32.c b/src/os_win32.c index f340949aa..bece2c4c6 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5322,6 +5322,7 @@ win32_build_env(dict_T *env, garray_T *gap, int is_terminal) # endif } } +# endif } void diff --git a/src/version.c b/src/version.c index 29cb801d3..5ff56fdb0 100644 --- 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, |