aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-27 14:38:41 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-28 19:20:09 +0200
commit8f59d1483934f91011b755406251136c406e77f6 (patch)
tree864bf25c65c6cfcd4e17c0ebd04afdad1342c268 /src/nvim/ui.c
parentf17a8185191b778960953508a5bf9b5f95b0560c (diff)
downloadrneovim-8f59d1483934f91011b755406251136c406e77f6.tar.gz
rneovim-8f59d1483934f91011b755406251136c406e77f6.tar.bz2
rneovim-8f59d1483934f91011b755406251136c406e77f6.zip
event: Remove "priority" concept.
It was replaced by the "child queue" concept (MultiQueue).
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r--src/nvim/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c
index 713dffb46c..924a4192bc 100644
--- a/src/nvim/ui.c
+++ b/src/nvim/ui.c
@@ -198,7 +198,7 @@ static void ui_refresh_event(void **argv)
void ui_schedule_refresh(void)
{
- loop_schedule(&main_loop, event_create(1, ui_refresh_event, 0));
+ loop_schedule(&main_loop, event_create(ui_refresh_event, 0));
}
void ui_resize(int new_width, int new_height)