Problem: Build failure without the +eval feature.
Solution: Add #ifdef.
* 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)
{
}
KeyTyped = skt;
wild_menu_showing = 0;
+#ifdef FEAT_EVAL
if (cclp->input_fn)
RedrawingDisabled = old_RedrawingDisabled;
+#endif
}
#if defined(FEAT_EVAL) || defined(PROTO)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 281,
/**/
280,
/**/