Mercurial > emacs
changeset 112294:e72732ba15db
* regex.c (analyse_first): Remove unreachable 'continue' statement.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Sun, 16 Jan 2011 23:34:14 -0800 |
parents | 568ea4e08e90 |
children | 2108d829c749 bdf0026c851f |
files | src/ChangeLog src/regex.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun Jan 16 23:27:25 2011 -0800 +++ b/src/ChangeLog Sun Jan 16 23:34:14 2011 -0800 @@ -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.
--- a/src/regex.c Sun Jan 16 23:27:25 2011 -0800 +++ b/src/regex.c Sun Jan 16 23:34:14 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 */ -