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 98735fc commit facd368Copy full SHA for facd368
2 files changed
src/regexp.c
@@ -8016,12 +8016,11 @@ vim_regcomp(expr_arg, re_flags)
8016
}
8017
#endif
8018
/*
8019
- * If NFA engine failed, then revert to the backtracking engine.
8020
- * Except when there was a syntax error, which was properly handled by
8021
- * NFA engine.
8022
- */
+ * If the NFA engine failed, the backtracking engine won't work either.
+ *
8023
if (regexp_engine == AUTOMATIC_ENGINE)
8024
prog = bt_regengine.regcomp(expr, re_flags);
+ */
8025
8026
8027
return prog;
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 29,
743
/**/
744
28,
745
0 commit comments