# HG changeset patch # User Paul Eggert # Date 1295249713 28800 # Node ID bdf0026c851fd7ba9561457c0149524c0a615a47 # Parent 61e41fbed768cacd96d91124184adc2645b166cf# Parent e72732ba15db9aeb45639f0c78b72496589455c5 * regex.c (analyse_first): Remove unreachable 'continue' statement. diff -r 61e41fbed768 -r bdf0026c851f src/ChangeLog --- a/src/ChangeLog Sun Jan 16 23:28:25 2011 -0800 +++ b/src/ChangeLog Sun Jan 16 23:35:13 2011 -0800 @@ -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 -r 61e41fbed768 -r bdf0026c851f src/regex.c --- a/src/regex.c Sun Jan 16 23:28:25 2011 -0800 +++ b/src/regex.c Sun Jan 16 23:35:13 2011 -0800 @@ -3999,7 +3999,6 @@ { case succeed: return 1; - continue; case duplicate: /* If the first character has to match a backreference, that means @@ -6735,4 +6734,3 @@ WEAK_ALIAS (__regfree, regfree) #endif /* not emacs */ -