diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-22 01:08:03 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-26 13:00:02 +0100 |
commit | c484323dc67fbca10a2f3da3d6e65efdb3c678c3 (patch) | |
tree | 901ba0fb401829bf07cb1840f3b2f355f8f3cd94 /src | |
parent | f7908b6f49b816317658b0346e19960ed5ae792f (diff) | |
download | rneovim-c484323dc67fbca10a2f3da3d6e65efdb3c678c3.tar.gz rneovim-c484323dc67fbca10a2f3da3d6e65efdb3c678c3.tar.bz2 rneovim-c484323dc67fbca10a2f3da3d6e65efdb3c678c3.zip |
terminal.c/redraw(): Remove cargo cult.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/terminal.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index b8ae2da913..3fd2814070 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -1126,14 +1126,6 @@ static void redraw(bool restore_cursor) update_screen(0); } - redraw_statuslines(); - - if (need_maketitle) { - maketitle(); - } - - showruler(false); - if (term && is_focused(term)) { curwin->w_wrow = term->cursor.row; curwin->w_wcol = term->cursor.col + win_col_off(curwin); |