From: Bram Moolenaar Date: Tue, 14 Jul 2009 10:20:22 +0000 (+0000) Subject: updated for version 7.2-229 X-Git-Tag: v7.2.229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=262735ed58cee09ef9d0f1c0377bcdf5a047a555;p=vim updated for version 7.2-229 --- diff --git a/src/os_unix.c b/src/os_unix.c index 591b49c91..102b654a7 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1138,10 +1138,10 @@ mch_suspend() * to happen). */ { - long wait; - for (wait = 0; !sigcont_received && wait <= 3L; wait++) + long wait_time; + for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) /* Loop is not entered most of the time */ - mch_delay(wait, FALSE); + mch_delay(wait_time, FALSE); } # endif diff --git a/src/version.c b/src/version.c index 250bf2d86..068f56f91 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 229, /**/ 228, /**/