forked from aniani/vim
patch 8.2.1196: build failure with normal features
Problem: Build failure with normal features. Solution: Add #ifdef.
This commit is contained in:
@@ -3504,10 +3504,12 @@ may_update_popup_mask(int type)
|
|||||||
wp = mouse_find_win(&line_cp, &col_cp, IGNORE_POPUP);
|
wp = mouse_find_win(&line_cp, &col_cp, IGNORE_POPUP);
|
||||||
if (wp != NULL)
|
if (wp != NULL)
|
||||||
{
|
{
|
||||||
|
#if defined(FEAT_TERMINAL)
|
||||||
// A terminal window needs to be redrawn.
|
// A terminal window needs to be redrawn.
|
||||||
if (bt_terminal(wp->w_buffer))
|
if (bt_terminal(wp->w_buffer))
|
||||||
redraw_win_later(wp, NOT_VALID);
|
redraw_win_later(wp, NOT_VALID);
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
if (wp != prev_wp)
|
if (wp != prev_wp)
|
||||||
{
|
{
|
||||||
|
@@ -754,6 +754,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 */
|
||||||
|
/**/
|
||||||
|
1196,
|
||||||
/**/
|
/**/
|
||||||
1195,
|
1195,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user