diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:13:52 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:13:52 -0400 |
commit | 168575f3f73f79185db0abdb91be364c0d0f29f9 (patch) | |
tree | c9bbf386710d6c57021e03811b2483bcd574812f /src/nvim/ex_getln.c | |
parent | 284a38a065f6cedd37f8f7d75c1953884653503c (diff) | |
parent | 1ff8ed7b823623e9abd224f78fbce7e20ce66f5d (diff) | |
download | rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.tar.gz rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.tar.bz2 rneovim-168575f3f73f79185db0abdb91be364c0d0f29f9.zip |
Merge #774 'Move defines from vim.h to other header files'
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index abb1bb4f86..0b00e458ff 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -2513,8 +2513,8 @@ void compute_cmdrow(void) if (exmode_active || msg_scrolled != 0) cmdline_row = Rows - 1; else - cmdline_row = W_WINROW(lastwin) + lastwin->w_height - + W_STATUS_HEIGHT(lastwin); + cmdline_row = lastwin->w_winrow + lastwin->w_height + + lastwin->w_status_height; } static void cursorcmd(void) |