aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-11-27 14:10:42 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-11-27 14:27:18 -0300
commit1865b8c1c115b639a4a12b5a9cb287a62a82ac76 (patch)
tree2fc64d750f64cc0139651168bd09e25ad15b7947 /src/nvim/quickfix.c
parent541eaf598c25e0b853ef441b57c9f7d1bbf3450c (diff)
downloadrneovim-1865b8c1c115b639a4a12b5a9cb287a62a82ac76.tar.gz
rneovim-1865b8c1c115b639a4a12b5a9cb287a62a82ac76.tar.bz2
rneovim-1865b8c1c115b639a4a12b5a9cb287a62a82ac76.zip
ui: Remove ui_delay, ui_breakcheck and ui_set_shellsize
These functions only used to call another os_* function, so remove them and replace all occurences in the project.
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 3de7f73339..e88fb6f49e 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -52,6 +52,7 @@
#include "nvim/ui.h"
#include "nvim/window.h"
#include "nvim/os/os.h"
+#include "nvim/os/input.h"
struct dir_stack_T {
@@ -1791,7 +1792,7 @@ void qf_list(exarg_T *eap)
qfp = qfp->qf_next;
++i;
- ui_breakcheck();
+ os_breakcheck();
}
}