# HG changeset patch # User vimboss # Date 1152651661 0 # Node ID 697dec8ec5e723ae32e12229d3ca111fe7f4ba92 # Parent abff2f6a3ad7790f86e055519dcb851a06fe78c0 updated for version 7.0-037 diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -7129,6 +7129,12 @@ screenalloc(clear) return; entered = TRUE; + /* + * Note that the window sizes are updated before reallocating the arrays, + * thus we must not redraw here! + */ + ++RedrawingDisabled; + win_new_shellsize(); /* fit the windows in the new sized shell */ comp_col(); /* recompute columns for shown command and ruler */ @@ -7363,6 +7369,7 @@ screenalloc(clear) #endif entered = FALSE; + --RedrawingDisabled; #ifdef FEAT_AUTOCMD if (starting == 0) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 37, +/**/ 36, /**/ 35,