From: Bram Moolenaar Date: Wed, 9 Jul 2014 18:20:43 +0000 (+0200) Subject: updated for version 7.4.362 X-Git-Tag: v7.4.362 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e1aca37841103a90ba773f14899ba3a3757cee2;p=vim updated for version 7.4.362 Problem: When matchaddpos() uses a length smaller than the number of bytes in the (last) character the highlight continues until the end of the line. Solution: Change condition from equal to larger-or-equal. --- diff --git a/src/screen.c b/src/screen.c index 3bd4125b8..909a60658 100644 --- a/src/screen.c +++ b/src/screen.c @@ -3852,7 +3852,7 @@ win_line(wp, lnum, startrow, endrow, nochange) { shl->attr_cur = shl->attr; } - else if (v == (long)shl->endcol) + else if (v >= (long)shl->endcol) { shl->attr_cur = 0; next_search_hl(wp, shl, lnum, (colnr_T)v, cur); diff --git a/src/version.c b/src/version.c index 7a9a387fb..232a2d083 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 362, /**/ 361, /**/