mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.0-217
This commit is contained in:
@@ -4677,11 +4677,12 @@ do_sub(eap)
|
|||||||
/* For a multi-line match, put matchcol at the NUL at
|
/* For a multi-line match, put matchcol at the NUL at
|
||||||
* the end of the line and set nmatch to one, so that
|
* the end of the line and set nmatch to one, so that
|
||||||
* we continue looking for a match on the next line.
|
* we continue looking for a match on the next line.
|
||||||
* Avoids that ":s/\nB\@=//gc" get stuck. */
|
* Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
|
||||||
|
* get stuck when pressing 'n'. */
|
||||||
if (nmatch > 1)
|
if (nmatch > 1)
|
||||||
{
|
{
|
||||||
matchcol = (colnr_T)STRLEN(sub_firstline);
|
matchcol = (colnr_T)STRLEN(sub_firstline);
|
||||||
nmatch = 1;
|
skip_match = TRUE;
|
||||||
}
|
}
|
||||||
goto skip;
|
goto skip;
|
||||||
}
|
}
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
217,
|
||||||
/**/
|
/**/
|
||||||
216,
|
216,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user