patch 7.4.1566
Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama)
Solution: Remove the inner one.
diff --git a/src/eval.c b/src/eval.c
index 425ab68..fd028cc 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -8759,8 +8759,6 @@
}
if (error == ERROR_NONE && partial->pt_argc > 0)
{
- int i;
-
for (argv_clear = 0; argv_clear < partial->pt_argc; ++argv_clear)
copy_tv(&partial->pt_argv[argv_clear], &argv[argv_clear]);
for (i = 0; i < argcount_in; ++i)
diff --git a/src/version.c b/src/version.c
index 59c7714..e4004f8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -744,6 +744,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1566,
+/**/
1565,
/**/
1564,