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 99e4ab2 commit 1f76138Copy full SHA for 1f76138
2 files changed
src/regexp_nfa.c
@@ -6678,7 +6678,9 @@ nfa_regmatch(
6678
int subidx;
6679
int bytelen;
6680
6681
- if (t->state->c <= NFA_BACKREF9)
+#ifdef FEAT_SYN_HL
6682
+ if (t->state->c >= NFA_BACKREF1 && t->state->c <= NFA_BACKREF9)
6683
+#endif
6684
{
6685
subidx = t->state->c - NFA_BACKREF1 + 1;
6686
result = match_backref(&t->subs.norm, subidx, &bytelen);
src/version.c
@@ -695,6 +695,8 @@ static char *(features[]) =
695
696
static int included_patches[] =
697
{ /* Add new patch number below this line */
698
+/**/
699
+ 1427,
700
/**/
701
1426,
702
0 commit comments