Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.0.1603: cannot build with +terminal but without +menu
Problem:    Cannot build with +terminal but without +menu.
Solution:   Add #ifdef. (Damien)
  • Loading branch information
brammool committed Mar 13, 2018
1 parent 625f0c1 commit f118d48
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/terminal.c
Expand Up @@ -2738,8 +2738,11 @@ term_update_window(win_T *wp)
else
pos.col = 0;

screen_line(wp->w_winrow + pos.row + winbar_height(wp),
wp->w_wincol, pos.col, wp->w_width, FALSE);
screen_line(wp->w_winrow + pos.row
#ifdef FEAT_MENU
+ winbar_height(wp)
#endif
, wp->w_wincol, pos.col, wp->w_width, FALSE);
}
term->tl_dirty_row_start = MAX_ROW;
term->tl_dirty_row_end = 0;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -766,6 +766,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1603,
/**/
1602,
/**/
Expand Down

0 comments on commit f118d48

Please sign in to comment.