aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-02-07 21:41:45 +0100
committerGitHub <noreply@github.com>2019-02-07 21:41:45 +0100
commitf6faeea41c70015f6d9b63fecaf80d106cd2636d (patch)
tree00be473f5509a9cc085a64ab29b0fadb9f9412b3 /src/nvim/main.c
parentfa2580f953204e919a13388ce5af2edf3afd0594 (diff)
parentbe8058cfe4b7adff60a68d9503a01e322d7d2ff9 (diff)
downloadrneovim-f6faeea41c70015f6d9b63fecaf80d106cd2636d.tar.gz
rneovim-f6faeea41c70015f6d9b63fecaf80d106cd2636d.tar.bz2
rneovim-f6faeea41c70015f6d9b63fecaf80d106cd2636d.zip
Merge pull request #9586 from bfredl/screencleanup
screen: cleanup allocation and scrolling
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r--src/nvim/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 5d67f53ec4..c0dea196fb 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -300,7 +300,7 @@ int main(int argc, char **argv)
assert(p_ch >= 0 && Rows >= p_ch && Rows - p_ch <= INT_MAX);
cmdline_row = (int)(Rows - p_ch);
msg_row = cmdline_row;
- screenalloc(false); // allocate screen buffers
+ screenalloc(); // allocate screen buffers
set_init_2(headless_mode);
TIME_MSG("inits 2");