Skip to content

Commit 83e7450

Browse files
committed
patch 8.2.1196: build failure with normal features
Problem: Build failure with normal features. Solution: Add #ifdef.
1 parent 4d57ba0 commit 83e7450

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/popupwin.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3504,10 +3504,12 @@ may_update_popup_mask(int type)
35043504
wp = mouse_find_win(&line_cp, &col_cp, IGNORE_POPUP);
35053505
if (wp != NULL)
35063506
{
3507+
#if defined(FEAT_TERMINAL)
35073508
// A terminal window needs to be redrawn.
35083509
if (bt_terminal(wp->w_buffer))
35093510
redraw_win_later(wp, NOT_VALID);
35103511
else
3512+
#endif
35113513
{
35123514
if (wp != prev_wp)
35133515
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1196,
757759
/**/
758760
1195,
759761
/**/

0 commit comments

Comments
 (0)