# HG changeset patch # User Bram Moolenaar # Date 1656954003 -7200 # Node ID 9ec0dafac7fc5302a4ba443be78a08478517a4bb # Parent 1574b4ca8643089f58e5db9050c946acaba10e30 patch 9.0.0037: build error Commit: https://github.com/vim/vim/commit/510f03738dfcadfe2099c5b6a58cb75f64dbaa82 Author: Bram Moolenaar Date: Mon Jul 4 17:46:22 2022 +0100 patch 9.0.0037: build error Problem: Build error. Solution: Add missing change. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -3775,7 +3775,7 @@ update_system_term(term_T *term) else pos.col = 0; - screen_line(term->tl_toprow + pos.row, 0, pos.col, Columns, 0); + screen_line(curwin, term->tl_toprow + pos.row, 0, pos.col, Columns, 0); } term->tl_dirty_row_start = MAX_ROW; @@ -3894,7 +3894,7 @@ term_update_window(win_T *wp) else pos.col = 0; - screen_line(wp->w_winrow + pos.row + screen_line(wp, wp->w_winrow + pos.row #ifdef FEAT_MENU + winbar_height(wp) #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -736,6 +736,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 37, +/**/ 36, /**/ 35,