diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-03-16 10:59:29 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-03-16 10:59:29 -0300 |
commit | f6d4bfd51bb68d84bfc265fa973ea75978ecf304 (patch) | |
tree | cde83d46453e3cd56840a16191525826584062f6 /src/nvim/ui.c | |
parent | 7eee9c2a220fd1f0e600ae365e996fb56aa4cec1 (diff) | |
parent | 1d80c0e3a058dcb6b0ee94e796ac258d1c61caaa (diff) | |
download | rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.tar.gz rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.tar.bz2 rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.zip |
Merge PR #2164 'Small changes to ui_busy functions and testing'
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 0283e7bd62..2189021d22 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -155,16 +155,16 @@ void ui_busy_start(void) { if (!(busy++)) { UI_CALL(busy_start); + ui_flush(); } - ui_flush(); } void ui_busy_stop(void) { if (!(--busy)) { UI_CALL(busy_stop); + ui_flush(); } - ui_flush(); } |