0
0
mirror of https://github.com/vim/vim.git synced 2025-10-23 08:44:20 -04:00

patch 8.2.4808: unused item in engine struct

Problem:    Unused item in engine struct.
Solution:   Remove "expr".  Add comment with tags.
This commit is contained in:
Bram Moolenaar
2022-04-23 10:41:35 +01:00
parent 77fc0b02e5
commit 33d3ce640c
2 changed files with 7 additions and 1 deletions

View File

@@ -166,11 +166,15 @@ typedef struct
struct regengine
{
// bt_regcomp or nfa_regcomp
regprog_T *(*regcomp)(char_u*, int);
// bt_regfree or nfa_regfree
void (*regfree)(regprog_T *);
// bt_regexec_nl or nfa_regexec_nl
int (*regexec_nl)(regmatch_T *, char_u *, colnr_T, int);
// bt_regexec_mult or nfa_regexec_mult
long (*regexec_multi)(regmmatch_T *, win_T *, buf_T *, linenr_T, colnr_T, proftime_T *, int *);
char_u *expr;
//char_u *expr;
};
#endif // _REGEXP_H