summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-15 19:33:18 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-15 19:33:18 +0000
commit78a1531005adc6bfe435ee2b9207864688bea7e9 (patch)
treec0f3a65c5bc4a285124b518dabb080c311968ea3 /src/ex_cmds.c
parent0c094b9d7f8a031e2cb495551ecc13e34cfa5818 (diff)
updated for version 7.2-174v7.2.174
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 11c3ff6e4c..8a0a9ec128 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4040,8 +4040,10 @@ ex_z(eap)
bigness = curwin->w_height;
else if (firstwin == lastwin)
bigness = curwin->w_p_scr * 2;
+#ifdef FEAT_WINDOWS
else
bigness = curwin->w_height - 3;
+#endif
if (bigness < 1)
bigness = 1;