comparison src/terminal.c @ 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 87c00c420d27
children 827d9f2b7a71
comparison
equal deleted inserted replaced
29388:1574b4ca8643 29389:9ec0dafac7fc
3773 term_line2screenline(term, NULL, screen, &pos, max_col); 3773 term_line2screenline(term, NULL, screen, &pos, max_col);
3774 } 3774 }
3775 else 3775 else
3776 pos.col = 0; 3776 pos.col = 0;
3777 3777
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);
3779 } 3779 }
3780 3780
3781 term->tl_dirty_row_start = MAX_ROW; 3781 term->tl_dirty_row_start = MAX_ROW;
3782 term->tl_dirty_row_end = 0; 3782 term->tl_dirty_row_end = 0;
3783 } 3783 }
3892 term_line2screenline(term, wp, screen, &pos, max_col); 3892 term_line2screenline(term, wp, screen, &pos, max_col);
3893 } 3893 }
3894 else 3894 else
3895 pos.col = 0; 3895 pos.col = 0;
3896 3896
3897 screen_line(wp->w_winrow + pos.row 3897 screen_line(wp, wp->w_winrow + pos.row
3898 #ifdef FEAT_MENU 3898 #ifdef FEAT_MENU
3899 + winbar_height(wp) 3899 + winbar_height(wp)
3900 #endif 3900 #endif
3901 , wp->w_wincol, pos.col, wp->w_width, 3901 , wp->w_wincol, pos.col, wp->w_width,
3902 #ifdef FEAT_PROP_POPUP 3902 #ifdef FEAT_PROP_POPUP