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:
parent
bd42a0f5e6
commit
adb09c2e69
@ -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
|
||||
|
@ -676,6 +676,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
207,
|
||||
/**/
|
||||
206,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user