Problem: Missing part of patch 7.4.519.
Solution: Copy back regprog after calling vim_regexec.
restofline:
for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
{
+ int r;
+
idx = fmt_ptr->prefix;
if (multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL)
continue;
tail = NULL;
regmatch.regprog = fmt_ptr->prog;
- if (vim_regexec(®match, IObuff, (colnr_T)0))
+ r = vim_regexec(®match, IObuff, (colnr_T)0);
+ fmt_ptr->prog = regmatch.regprog;
+ if (r)
{
if ((idx == 'C' || idx == 'Z') && !multiline)
continue;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 554,
/**/
553,
/**/