changeset 18416:59b3d19511d0 v8.1.2202

patch 8.1.2202: MS-Windows: build failure with GUI and small features Commit: https://github.com/vim/vim/commit/93bbf33ceb1c13bd77e46f38164f9211da5d5f0e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 23 21:43:16 2019 +0200 patch 8.1.2202: MS-Windows: build failure with GUI and small features Problem: MS-Windows: build failure with GUI and small features. Solution: Add #ifdef. (Michael Soyka, closes https://github.com/vim/vim/issues/5097)
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Oct 2019 21:45:04 +0200
parents 52eb1bbf7690
children 6078cddee0b1
files src/gui_w32.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -2610,7 +2610,9 @@ ex_simalt(exarg_T *eap)
 	key_name[1] = KS_EXTRA;
 	key_name[2] = KE_NOP;
 	key_name[3] = NUL;
+#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
 	typebuf_was_filled = TRUE;
+#endif
 	(void)ins_typebuf(key_name, REMAP_NONE, 0, TRUE, FALSE);
     }
 }
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2202,
+/**/
     2201,
 /**/
     2200,