From: Paul Eggert Date: Mon, 17 Jan 2011 07:34:14 +0000 (-0800) Subject: * regex.c (analyse_first): Remove unreachable 'continue' statement. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~228^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8865d794dcf18371e6a0727588ee92ac76e04856;p=emacs.git * regex.c (analyse_first): Remove unreachable 'continue' statement. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4b9fe9b13dc..41f6f72c662 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-01-17 Paul Eggert + * regex.c (analyse_first): Remove unreachable 'continue' statement. + * xterm.h (struct x_display_info): Remove stray semicolon. The extra semicolon didn't conform to the C standard. Problem reported by Sun cc. diff --git a/src/regex.c b/src/regex.c index 318b8fe74b5..28336eba417 100644 --- a/src/regex.c +++ b/src/regex.c @@ -3999,7 +3999,6 @@ analyse_first (const re_char *p, const re_char *pend, char *fastmap, const int m { case succeed: return 1; - continue; case duplicate: /* If the first character has to match a backreference, that means @@ -6735,4 +6734,3 @@ regfree (regex_t *preg) WEAK_ALIAS (__regfree, regfree) #endif /* not emacs */ -