updated for version 7.3.1107
Problem: Compiler warnings for unused variables.
Solution: Put the variables inside #ifdef.
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index 1bb82fd..75cbb2a 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -237,8 +237,10 @@
/* NFA regexp \1 .. \9 encountered. */
static int nfa_has_backref;
+#ifdef FEAT_SYN_HL
/* NFA regexp has \z( ), set zsubexpr. */
static int nfa_has_zsubexpr;
+#endif
/* Number of sub expressions actually being used during execution. 1 if only
* the whole match (subexpr 0) is used. */
@@ -420,7 +422,7 @@
if (*p == '^')
{
not = TRUE;
- p ++;
+ p++;
}
while (p < end)