aboutsummaryrefslogtreecommitdiff
path: root/src/regexp_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/regexp_defs.h')
-rw-r--r--src/regexp_defs.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/regexp_defs.h b/src/regexp_defs.h
index 9b13de89d3..a4eaa8d0a5 100644
--- a/src/regexp_defs.h
+++ b/src/regexp_defs.h
@@ -138,11 +138,7 @@ typedef struct {
struct regengine {
regprog_T *(*regcomp)(char_u*, int);
void (*regfree)(regprog_T *);
- int (*regexec)(regmatch_T*, char_u*, colnr_T);
-#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
- || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
- int (*regexec_nl)(regmatch_T*, char_u*, colnr_T);
-#endif
+ int (*regexec_nl)(regmatch_T*, char_u*, colnr_T, bool);
long (*regexec_multi)(regmmatch_T*, win_T*, buf_T*, linenr_T, colnr_T,
proftime_T*);
#ifdef DEBUG