* regex.c (analyse_first): Remove unreachable 'continue' statement.

This commit is contained in:
Paul Eggert 2011-01-16 23:34:14 -08:00
parent 4ef36a7b4c
commit 8865d794dc
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
* 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.

View file

@ -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 */