1
0
forked from aniani/vim

patch 8.2.0193: still build failure without +terminal feature

Problem:    Still build failure without +terminal feature.
Solution:   Add more #ifdefs.
This commit is contained in:
Bram Moolenaar
2020-02-01 22:39:32 +01:00
parent 91cd59a0a2
commit 284d1c24e2
2 changed files with 6 additions and 1 deletions

View File

@@ -345,9 +345,12 @@
// Give an error in curwin is a popup window and evaluate to TRUE. // Give an error in curwin is a popup window and evaluate to TRUE.
#ifdef FEAT_PROP_POPUP #ifdef FEAT_PROP_POPUP
# define ERROR_IF_POPUP_WINDOW error_if_popup_window() # define ERROR_IF_POPUP_WINDOW error_if_popup_window()
# define ERROR_IF_TERM_POPUP_WINDOW error_if_term_popup_window()
#else #else
# define ERROR_IF_POPUP_WINDOW 0 # define ERROR_IF_POPUP_WINDOW 0
#endif
#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
# define ERROR_IF_TERM_POPUP_WINDOW error_if_term_popup_window()
#else
# define ERROR_IF_TERM_POPUP_WINDOW 0 # define ERROR_IF_TERM_POPUP_WINDOW 0
#endif #endif

View File

@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
193,
/**/ /**/
192, 192,
/**/ /**/