Problem: Unused loop variables.
Solution: Use a while loop instead. (closes #11214)
if (retval == 0)
{
dp = digraphdefault;
- for (i = 0; dp->char1 != 0; ++i)
+ while (dp->char1 != 0)
{
if ((int)dp->char1 == char1 && (int)dp->char2 == char2)
{
msg_putchar('\n');
dp = digraphdefault;
- for (i = 0; dp->char1 != NUL && !got_int; ++i)
+ while (dp->char1 != NUL && !got_int)
{
#if defined(USE_UNICODE_DIGRAPHS)
digr_T tmp;
if (list_all)
{
dp = digraphdefault;
- for (i = 0; dp->char1 != NUL && !got_int; ++i)
+ while (dp->char1 != NUL && !got_int)
{
#ifdef USE_UNICODE_DIGRAPHS
digr_T tmp;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 576,
/**/
575,
/**/