[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102876: * regex.c (analyse_first): R
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102876: * regex.c (analyse_first): Remove unreachable 'continue' statement. |
Date: |
Sun, 16 Jan 2011 23:35:13 -0800 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102876 [merge]
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2011-01-16 23:35:13 -0800
message:
* regex.c (analyse_first): Remove unreachable 'continue' statement.
modified:
src/ChangeLog
src/regex.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2011-01-17 07:27:25 +0000
+++ b/src/ChangeLog 2011-01-17 07:34:14 +0000
@@ -1,5 +1,7 @@
2011-01-17 Paul Eggert <address@hidden>
+ * 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.
=== modified file 'src/regex.c'
--- a/src/regex.c 2011-01-14 17:18:41 +0000
+++ b/src/regex.c 2011-01-17 07:34:14 +0000
@@ -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 */
-
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102876: * regex.c (analyse_first): Remove unreachable 'continue' statement.,
Paul Eggert <=