aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/terminal.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-11-28 01:57:07 +0100
committerZyX <kp-pav@yandex.ru>2017-02-14 00:33:52 +0300
commit59f12e7d618340df181988488ec99f172c901d19 (patch)
treecb345b4a72344030088b7d372d6ba505ceeb01b2 /src/nvim/terminal.c
parentd6705918870c8cf6c6a2eced220f59f59e7ce26f (diff)
downloadrneovim-59f12e7d618340df181988488ec99f172c901d19.tar.gz
rneovim-59f12e7d618340df181988488ec99f172c901d19.tar.bz2
rneovim-59f12e7d618340df181988488ec99f172c901d19.zip
ui_detach: Do not redraw during teardown/exit.
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r--src/nvim/terminal.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c
index bd7b9fc58f..b0104a4e4c 100644
--- a/src/nvim/terminal.c
+++ b/src/nvim/terminal.c
@@ -977,9 +977,7 @@ static void refresh_terminal(Terminal *term)
// event.
static void refresh_timer_cb(TimeWatcher *watcher, void *data)
{
- if (exiting) {
- // bad things can happen if we redraw when exiting, and there's no need to
- // update the buffer.
+ if (exiting) { // Cannot redraw (requires event loop) during teardown/exit.
goto end;
}
Terminal *term;