diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-11-28 01:57:07 +0100 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-02-14 00:33:52 +0300 |
commit | 59f12e7d618340df181988488ec99f172c901d19 (patch) | |
tree | cb345b4a72344030088b7d372d6ba505ceeb01b2 /src/nvim/ui.c | |
parent | d6705918870c8cf6c6a2eced220f59f59e7ce26f (diff) | |
download | rneovim-59f12e7d618340df181988488ec99f172c901d19.tar.gz rneovim-59f12e7d618340df181988488ec99f172c901d19.tar.bz2 rneovim-59f12e7d618340df181988488ec99f172c901d19.zip |
ui_detach: Do not redraw during teardown/exit.
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index d3784b6cd3..8c72c28e56 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -258,7 +258,10 @@ void ui_detach_impl(UI *ui) shift_index++; } - if (--ui_count) { + if (--ui_count + // During teardown/exit the loop was already destroyed, cannot schedule. + // https://github.com/neovim/neovim/pull/5119#issuecomment-258667046 + && !exiting) { ui_schedule_refresh(); } } |