changeset 29389:9ec0dafac7fc v9.0.0037

patch 9.0.0037: build error Commit: https://github.com/vim/vim/commit/510f03738dfcadfe2099c5b6a58cb75f64dbaa82 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 4 17:46:22 2022 +0100 patch 9.0.0037: build error Problem: Build error. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jul 2022 19:00:03 +0200
parents 1574b4ca8643
children f85fcaede57f
files src/terminal.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,