# HG changeset patch # User vimboss # Date 1247566822 0 # Node ID f339305875fa7cd21cb4d42619f5b9789a027eb2 # Parent 3f661e42f262e7839e2f04c50a447c53f6c4214c updated for version 7.2-229 diff --git a/src/os_unix.c b/src/os_unix.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 229, +/**/ 228, /**/ 227,