Problem: Compiler warning for code unreachable. (Charles Campbell)
Solution: Use "while" instead of endless loop. Change break to continue.
if (depth > 10)
return FALSE;
- for (;;)
+ while (state != NULL)
{
switch (state->c)
{
case NFA_COMPOSING:
/* skip ahead to next state */
state = state->out1->out;
- break;
+ continue;
case NFA_ANY:
case NFA_IDENT:
else
# endif
return clip_x11_owner_exists(cbd);
-#endif
+#else
return TRUE;
+#endif
}
#endif /* FEAT_CLIPBOARD */
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 18,
/**/
17,
/**/