summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-23 12:34:27 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-23 12:34:27 +0100
commitee56f3f119c4378a5b62b4d504cff3373b363308 (patch)
treecf21fac7b70069c8ccf1057a904ca0cb19699ee7
parent079ba76ae7a7d0ef404cb9b41dff2663ff41f51b (diff)
downloadvim-git-ee56f3f119c4378a5b62b4d504cff3373b363308.tar.gz
patch 8.2.3559: loop variable recreated every timev8.2.3559
Problem: Loop variable recreated every time. Solution: Keep the loop variable when looping.
-rw-r--r--src/ex_eval.c5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c
index 1142280ba..1f66e336f 100644
--- a/src/ex_eval.c
+++ b/src/ex_eval.c
@@ -1191,8 +1191,9 @@ ex_while(exarg_T *eap)
& CSF_FUNC_DEF;
// Any variables defined in the previous round are no longer
- // visible.
- for (i = cstack->cs_script_var_len[cstack->cs_idx];
+ // visible. Keep the first one, it is the loop variable that
+ // we reuse every time around.
+ for (i = cstack->cs_script_var_len[cstack->cs_idx] + 1;
i < si->sn_var_vals.ga_len; ++i)
{
svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + i;
diff --git a/src/version.c b/src/version.c
index 53ceef0bf..4381877f3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3559,
+/**/
3558,
/**/
3557,