summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-23 21:43:16 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-23 21:43:16 +0200
commit93bbf33ceb1c13bd77e46f38164f9211da5d5f0e (patch)
treecf2ffb7c331c4ead8fbc1b72f618bed66feb6eae /src/gui_w32.c
parent13a1f3fb0c9d08bba6109fe2131c9524e6ba7e15 (diff)
downloadvim-git-93bbf33ceb1c13bd77e46f38164f9211da5d5f0e.tar.gz
patch 8.1.2202: MS-Windows: build failure with GUI and small featuresv8.1.2202
Problem: MS-Windows: build failure with GUI and small features. Solution: Add #ifdef. (Michael Soyka, closes #5097)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index ae47873e4..4ee18634f 100644
--- 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);
}
}