Problem: Using searchpair() with a skip expression that uses syntax
highlighting sometimes doesn't work. (David Fishburn)
Solution: Reset next_match_idx. (Christian Brabandt)
|| lnum != current_lnum
|| col < current_col)
syntax_start(wp, lnum);
+ else if (wp->w_buffer == syn_buf
+ && lnum == current_lnum
+ && col > current_col)
+ /* next_match may not be correct when moving around, e.g. with the
+ * "skip" expression in searchpair() */
+ next_match_idx = -1;
(void)get_syntax_attr(col, spellp, keep_state);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1141,
/**/
1140,
/**/