]> granicus.if.org Git - vim/commitdiff
patch 8.0.1487: test 14 fails v8.0.1487
authorBram Moolenaar <Bram@vim.org>
Fri, 9 Feb 2018 18:24:01 +0000 (19:24 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 9 Feb 2018 18:24:01 +0000 (19:24 +0100)
Problem:    Test 14 fails.
Solution:   Fix of-by-one error.

src/search.c
src/version.c

index 8089dcf36938bd760eb385977abcf48aa7ef3ce7..7f019ed702560695e4e74a70fbbb3efb51faaa38 100644 (file)
@@ -685,7 +685,7 @@ searchit(
                                                    && pos->col < MAXCOL - 2)
        {
            ptr = ml_get_buf(buf, pos->lnum, FALSE);
-           if ((int)STRLEN(ptr) < pos->col)
+           if ((int)STRLEN(ptr) <= pos->col)
                start_char_len = 1;
            else
                start_char_len = (*mb_ptr2len)(ptr + pos->col);
index d3927cbd0bdca695a2c9e3d3789be08c761d1913..043cc623ff925549783050855c1386d4f724c47b 100644 (file)
@@ -771,6 +771,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1487,
 /**/
     1486,
 /**/