mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.0330: build error with popup window but without terminal
Problem: Build error with popup window but without terminal. Solution: Add #ifdef.
This commit is contained in:
@@ -3506,7 +3506,9 @@ update_popups(void (*win_update)(win_T *wp))
|
|||||||
wp->w_winrow -= top_off;
|
wp->w_winrow -= top_off;
|
||||||
wp->w_wincol -= left_extra;
|
wp->w_wincol -= left_extra;
|
||||||
// cursor position matters in terminal in job mode
|
// cursor position matters in terminal in job mode
|
||||||
|
#ifdef FEAT_TERMINAL
|
||||||
if (wp != curwin || !term_in_normal_mode())
|
if (wp != curwin || !term_in_normal_mode())
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
wp->w_wrow += top_off;
|
wp->w_wrow += top_off;
|
||||||
wp->w_wcol += left_extra;
|
wp->w_wcol += left_extra;
|
||||||
|
@@ -738,6 +738,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 */
|
||||||
|
/**/
|
||||||
|
330,
|
||||||
/**/
|
/**/
|
||||||
329,
|
329,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user