mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.2122: cannot build without terminal feature
Problem: Cannot build without terminal feature. Solution: Add #ifdef.
This commit is contained in:
@@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
2122,
|
||||||
/**/
|
/**/
|
||||||
2121,
|
2121,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -4654,9 +4654,11 @@ win_enter_ext(
|
|||||||
maketitle();
|
maketitle();
|
||||||
#endif
|
#endif
|
||||||
curwin->w_redr_status = TRUE;
|
curwin->w_redr_status = TRUE;
|
||||||
|
#ifdef FEAT_TERMINAL
|
||||||
if (bt_terminal(wp->w_buffer))
|
if (bt_terminal(wp->w_buffer))
|
||||||
// terminal is likely in another mode
|
// terminal is likely in another mode
|
||||||
redraw_mode = TRUE;
|
redraw_mode = TRUE;
|
||||||
|
#endif
|
||||||
redraw_tabline = TRUE;
|
redraw_tabline = TRUE;
|
||||||
if (restart_edit)
|
if (restart_edit)
|
||||||
redraw_later(VALID); /* causes status line redraw */
|
redraw_later(VALID); /* causes status line redraw */
|
||||||
|
Reference in New Issue
Block a user