patch 9.0.0657: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate the +cmdwin feature. Now the tiny and small builds are
equal, drop the small build. (Martin Tournoij, closes #11268)
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 3ade631..5e8fbe2 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -2609,11 +2609,7 @@
POINT pt;
// When ignoring events don't show the menu.
- if (hold_gui_events
-# ifdef FEAT_CMDWIN
- || cmdwin_type != 0
-# endif
- )
+ if (hold_gui_events || cmdwin_type != 0)
return;
tab_pmenu = CreatePopupMenu();