aboutsummaryrefslogtreecommitdiff
path: root/src/regexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regexp.c')
-rw-r--r--src/regexp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/regexp.c b/src/regexp.c
index 54fe5940a7..7bcc69593c 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -6932,6 +6932,9 @@ static regengine_T bt_regengine =
#ifdef REGEXP_DEBUG
,(char_u *)""
#endif
+#ifdef DEBUG
+ ,NULL
+#endif
};
@@ -6950,6 +6953,9 @@ static regengine_T nfa_regengine =
#ifdef REGEXP_DEBUG
,(char_u *)""
#endif
+#ifdef DEBUG
+ , NULL
+#endif
};
/* Which regexp engine to use? Needed for vim_regcomp().