We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82846a0 commit 8846ac5Copy full SHA for 8846ac5
2 files changed
src/search.c
@@ -685,7 +685,7 @@ searchit(
685
&& pos->col < MAXCOL - 2)
686
{
687
ptr = ml_get_buf(buf, pos->lnum, FALSE);
688
- if ((int)STRLEN(ptr) < pos->col)
+ if ((int)STRLEN(ptr) <= pos->col)
689
start_char_len = 1;
690
else
691
start_char_len = (*mb_ptr2len)(ptr + pos->col);
src/version.c
@@ -771,6 +771,8 @@ static char *(features[]) =
771
772
static int included_patches[] =
773
{ /* Add new patch number below this line */
774
+/**/
775
+ 1487,
776
/**/
777
1486,
778
0 commit comments