]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.362 v7.4.362
authorBram Moolenaar <Bram@vim.org>
Wed, 9 Jul 2014 18:20:43 +0000 (20:20 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 9 Jul 2014 18:20:43 +0000 (20:20 +0200)
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.

src/screen.c
src/version.c

index 3bd4125b84ec662ae877a86773c1903eba3e8a79..909a60658c0970efc5c22698a71fe8994e03cfbe 100644 (file)
@@ -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);
index 7a9a387fbdba5e984bc0c614bd7f01b0382b2487..232a2d083e5cde9328e39f35cca004613395a103 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    362,
 /**/
     361,
 /**/