vim-patch:8.1.1717: last char in menu popup window highlighted

Problem:    Last char in menu popup window highlighted.
Solution:   Do not highlight an extra character twice.
f914a33c9c

N/A patches for version.c:

vim-patch:8.1.0746: highlighting not updated with conceal and 'cursorline'

Problem:    Highlighting not updated with conceal and 'cursorline'. (Jason
            Franklin)
Solution:   Do not use a zero line number.  Check if 'conceallevel' is set for
            the current window.
bbee8d5122
This commit is contained in:
Jan Edmund Lazo 2020-10-07 19:47:36 -04:00
parent ca6815115c
commit d5bc62a5ce
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -3690,7 +3690,7 @@ win_line (
}
// At end of the text line or just after the last character.
if (c == NUL) {
if (c == NUL && eol_hl_off == 0) {
long prevcol = (long)(ptr - line) - 1;
// we're not really at that column when skipping some text