# HG changeset patch # User vimboss # Date 1245165732 0 # Node ID 1287e2bbeb405c10201d4caa6b2dab284f84efbf # Parent 9edc96495747bd354e68dfd76b6ca525d39e715c updated for version 7.2-207 diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -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 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 */ /**/ + 207, +/**/ 206, /**/ 205,