# HG changeset patch # User Christian Brabandt # Date 1501337703 -7200 # Node ID 42585fee5e668becc17c4ebd780fe0e15489591e # Parent 94f7feb4ddcb5d7860c3e7408badddf157a7330e patch 8.0.0802: last line of terminal window has no color commit https://github.com/vim/vim/commit/70229f951f00cdcff790f2e70b0b0a601202e9e7 Author: Bram Moolenaar Date: Sat Jul 29 16:01:53 2017 +0200 patch 8.0.0802: last line of terminal window has no color Problem: After a job exits the last line in the terminal window does not get color attributes. Solution: Fix off-by-one error. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -1270,7 +1270,7 @@ term_get_attr(buf_T *buf, linenr_T lnum, term_T *term = buf->b_term; sb_line_T *line; - if (lnum >= term->tl_scrollback.ga_len) + if (lnum > term->tl_scrollback.ga_len) return 0; line = (sb_line_T *)term->tl_scrollback.ga_data + lnum - 1; if (col >= line->sb_cols) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 802, +/**/ 801, /**/ 800,