0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.2-207

This commit is contained in:
Bram Moolenaar 2009-06-16 15:22:12 +00:00
parent bd42a0f5e6
commit adb09c2e69
2 changed files with 10 additions and 0 deletions

View File

@ -5743,6 +5743,13 @@ win_redr_status(wp)
int fillchar;
int attr;
int this_ru_col;
static int busy = FALSE;
/* It's possible to get here recursively when 'statusline' (indirectly)
* invokes ":redrawstatus". Simply ignore the call then. */
if (busy)
return;
busy = TRUE;
wp->w_redr_status = FALSE;
if (wp->w_status_height == 0)
@ -5881,6 +5888,7 @@ win_redr_status(wp)
attr);
}
#endif
busy = FALSE;
}
#ifdef FEAT_STL_OPT

View File

@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
207,
/**/
206,
/**/