diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-15 19:33:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-15 19:33:18 +0000 |
commit | 78a1531005adc6bfe435ee2b9207864688bea7e9 (patch) | |
tree | c0f3a65c5bc4a285124b518dabb080c311968ea3 /src/ex_cmds.c | |
parent | 0c094b9d7f8a031e2cb495551ecc13e34cfa5818 (diff) | |
download | vim-git-78a1531005adc6bfe435ee2b9207864688bea7e9.tar.gz |
updated for version 7.2-174v7.2.174
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 11c3ff6e4..8a0a9ec12 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; |