summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-07-14 10:20:22 +0000
committervimboss <devnull@localhost>2009-07-14 10:20:22 +0000
commit61085214f791201583f23d98b4b8f99cc6cde200 (patch)
tree2e7fbd92a9b2d08052ee4ece56b124667900bc27
parent8f18c8e79df08973f725cd2e01273997e7dc826d (diff)
downloadvim-61085214f791201583f23d98b4b8f99cc6cde200.tar.gz
updated for version 7.2-229v7.2.229v7-2-229
-rw-r--r--src/os_unix.c6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 591b49c9..102b654a 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 250bf2d8..068f56f9 100644
--- 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,