aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex-emacs.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regex-emacs.c b/src/regex-emacs.c
index 338323cf79e..ae82dd63917 100644
--- a/src/regex-emacs.c
+++ b/src/regex-emacs.c
@@ -3086,8 +3086,10 @@ analyze_first (re_char *p, re_char *pend, char *fastmap, bool multibyte)
3086 /* We only care about one iteration of the loop, so we don't 3086 /* We only care about one iteration of the loop, so we don't
3087 need to consider the case where this behaves like an 3087 need to consider the case where this behaves like an
3088 on_failure_jump. */ 3088 on_failure_jump. */
3089 continue; 3089 /* FIXME: Sadly, the above is not true when the loop's body
3090 3090 can match the empty string :-( */
3091 /* continue; */
3092 return -1;
3091 3093
3092 case set_number_at: 3094 case set_number_at:
3093 p += 4; 3095 p += 4;