mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.2-229
This commit is contained in:
@@ -1138,10 +1138,10 @@ mch_suspend()
|
|||||||
* to happen).
|
* to happen).
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
long wait;
|
long wait_time;
|
||||||
for (wait = 0; !sigcont_received && wait <= 3L; wait++)
|
for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
|
||||||
/* Loop is not entered most of the time */
|
/* Loop is not entered most of the time */
|
||||||
mch_delay(wait, FALSE);
|
mch_delay(wait_time, FALSE);
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
229,
|
||||||
/**/
|
/**/
|
||||||
228,
|
228,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user