# HG changeset patch # User Bram Moolenaar # Date 1664031603 -7200 # Node ID ac6b2ee967f10d6f6c49a88addf35217346caef4 # Parent 79fc101ece3240f338620ca39e8e316be10ffa7a patch 9.0.0576: unused loop variables Commit: https://github.com/vim/vim/commit/b2209f213e2931cf3313b24868a9165bbb717cc4 Author: dundargoc Date: Sat Sep 24 15:55:27 2022 +0100 patch 9.0.0576: unused loop variables Problem: Unused loop variables. Solution: Use a while loop instead. (closes https://github.com/vim/vim/issues/11214) diff --git a/src/digraph.c b/src/digraph.c --- a/src/digraph.c +++ b/src/digraph.c @@ -1596,7 +1596,7 @@ getexactdigraph(int char1, int char2, in 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) { @@ -1773,7 +1773,7 @@ listdigraphs(int use_headers) 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; @@ -1876,7 +1876,7 @@ digraph_getlist_common(int list_all, typ 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; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 576, +/**/ 575, /**/ 574,