# HG changeset patch # User Bram Moolenaar # Date 1580593504 -3600 # Node ID a8a915898b35fa8d1c3d8354c45751eee720ad4a # Parent dc13104652685c05a7c7458c48efc0086026bb42 patch 8.2.0193: still build failure without +terminal feature Commit: https://github.com/vim/vim/commit/284d1c24e250494cf886b3548f1ecae5ad262da9 Author: Bram Moolenaar Date: Sat Feb 1 22:39:32 2020 +0100 patch 8.2.0193: still build failure without +terminal feature Problem: Still build failure without +terminal feature. Solution: Add more #ifdefs. diff --git a/src/macros.h b/src/macros.h --- a/src/macros.h +++ b/src/macros.h @@ -345,9 +345,12 @@ // Give an error in curwin is a popup window and evaluate to TRUE. #ifdef FEAT_PROP_POPUP # define ERROR_IF_POPUP_WINDOW error_if_popup_window() +#else +# 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_POPUP_WINDOW 0 # define ERROR_IF_TERM_POPUP_WINDOW 0 #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 193, +/**/ 192, /**/ 191,