changeset 112300:bdf0026c851f

* regex.c (analyse_first): Remove unreachable 'continue' statement.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 16 Jan 2011 23:35:13 -0800
parents 61e41fbed768 (current diff) e72732ba15db (diff)
children 4249a8552faf
files
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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  <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: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  */
-