Skip to content

Commit 510f037

Browse files
committed
patch 9.0.0037: build error
Problem: Build error. Solution: Add missing change.
1 parent 96ba25a commit 510f037

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/terminal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3775,7 +3775,7 @@ update_system_term(term_T *term)
37753775
else
37763776
pos.col = 0;
37773777

3778-
screen_line(term->tl_toprow + pos.row, 0, pos.col, Columns, 0);
3778+
screen_line(curwin, term->tl_toprow + pos.row, 0, pos.col, Columns, 0);
37793779
}
37803780

37813781
term->tl_dirty_row_start = MAX_ROW;
@@ -3894,7 +3894,7 @@ term_update_window(win_T *wp)
38943894
else
38953895
pos.col = 0;
38963896

3897-
screen_line(wp->w_winrow + pos.row
3897+
screen_line(wp, wp->w_winrow + pos.row
38983898
#ifdef FEAT_MENU
38993899
+ winbar_height(wp)
39003900
#endif

src/version.c

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

736736
static int included_patches[] =
737737
{ /* Add new patch number below this line */
738+
/**/
739+
37,
738740
/**/
739741
36,
740742
/**/

0 commit comments

Comments
 (0)