diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-02-22 09:00:21 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-02-22 10:26:45 +0100 |
commit | 8b05da157728e960b15c7e719a20eedb61637703 (patch) | |
tree | dad03f3f84c5ea7d1ecaeb2c56482cfbfb719e38 /src/nvim/ui.c | |
parent | 4696a5a10e16ca5c571e6b69248c5a8ee9685fda (diff) | |
download | rneovim-8b05da157728e960b15c7e719a20eedb61637703.tar.gz rneovim-8b05da157728e960b15c7e719a20eedb61637703.tar.bz2 rneovim-8b05da157728e960b15c7e719a20eedb61637703.zip |
ui_bridge: make sure TUI receives no more UI events after "stop" event
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 3f4f17824b..241d70e1b1 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -144,12 +144,6 @@ void ui_builtin_stop(void) UI_CALL(stop); } -/// Returns true if UI `ui` is stopped. -bool ui_is_stopped(UI *ui) -{ - return ui->data == NULL; -} - bool ui_rgb_attached(void) { if (!headless_mode && p_tgc) { |