summaryrefslogtreecommitdiffstats
path: root/src/cmdexpand.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-26 19:58:49 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-26 19:58:49 +0100
commit58dcbf1c6586d3873702e035b47829178a91250e (patch)
tree6f41634a90e77fe519609e64ac542cbb8b81366b /src/cmdexpand.c
parent7dd543246a4c21c4d5a4242a28076706f5abebd4 (diff)
patch 9.0.0281: build failure without the +eval featurev9.0.0281
Problem: Build failure without the +eval feature. Solution: Add #ifdef.
Diffstat (limited to 'src/cmdexpand.c')
-rw-r--r--src/cmdexpand.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cmdexpand.c b/src/cmdexpand.c
index a62c6abf61..5cdb1beab5 100644
--- a/src/cmdexpand.c
+++ b/src/cmdexpand.c
@@ -3613,16 +3613,20 @@ wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp)
* Free expanded names when finished walking through the matches
*/
void
-wildmenu_cleanup(cmdline_info_T *cclp)
+wildmenu_cleanup(cmdline_info_T *cclp UNUSED)
{
int skt = KeyTyped;
+#ifdef FEAT_EVAL
int old_RedrawingDisabled = RedrawingDisabled;
+#endif
if (!p_wmnu || wild_menu_showing == 0)
return;
+#ifdef FEAT_EVAL
if (cclp->input_fn)
RedrawingDisabled = 0;
+#endif
if (wild_menu_showing == WM_SCROLLED)
{
@@ -3647,8 +3651,10 @@ wildmenu_cleanup(cmdline_info_T *cclp)
}
KeyTyped = skt;
wild_menu_showing = 0;
+#ifdef FEAT_EVAL
if (cclp->input_fn)
RedrawingDisabled = old_RedrawingDisabled;
+#endif
}
#if defined(FEAT_EVAL) || defined(PROTO)