diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 70cdd349d8..465fb9e436 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -4099,12 +4099,12 @@ ex_z(eap) * 'scroll' */ if (eap->forceit) bigness = curwin->w_height; - else if (firstwin == lastwin) - bigness = curwin->w_p_scr * 2; #ifdef FEAT_WINDOWS - else + else if (firstwin != lastwin) bigness = curwin->w_height - 3; #endif + else + bigness = curwin->w_p_scr * 2; if (bigness < 1) bigness = 1; diff --git a/src/version.c b/src/version.c index 40deff6da5..221df42388 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 185, /**/ 184, /**/