forked from aniani/vim
updated for version 7.1-173
This commit is contained in:
@@ -3810,11 +3810,11 @@ regmatch(scan)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case RE_BOF:
|
case RE_BOF:
|
||||||
/* Passing -1 to the getline() function provided for the search
|
/* We're not at the beginning of the file when below the first
|
||||||
* should always return NULL if the current line is the first
|
* line where we started, not at the start of the line or we
|
||||||
* line of the file. */
|
* didn't start at the first line of the buffer. */
|
||||||
if (reglnum != 0 || reginput != regline
|
if (reglnum != 0 || reginput != regline
|
||||||
|| (REG_MULTI && reg_getline((linenr_T)-1) != NULL))
|
|| (REG_MULTI && reg_firstlnum > 1))
|
||||||
status = RA_NOMATCH;
|
status = RA_NOMATCH;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
173,
|
||||||
/**/
|
/**/
|
||||||
172,
|
172,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user