aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.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/eval.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/eval.c')
-rw-r--r--src/nvim/eval.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 0a57b4ceb2..206f487471 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -90,6 +90,7 @@
#include "nvim/api/vim.h"
#include "nvim/os/dl.h"
#include "nvim/os/event.h"
+#include "nvim/os/input.h"
#define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */
@@ -17270,7 +17271,7 @@ void ex_function(exarg_T *eap)
msg_putchar(' ');
msg_prt_line(FUNCLINE(fp, j), FALSE);
out_flush(); /* show a line at a time */
- ui_breakcheck();
+ os_breakcheck();
}
if (!got_int) {
msg_putchar('\n');
@@ -19295,7 +19296,7 @@ void ex_oldfiles(exarg_T *eap)
msg_outtrans(get_tv_string(&li->li_tv));
msg_putchar('\n');
out_flush(); /* output one line at a time */
- ui_breakcheck();
+ os_breakcheck();
}
/* Assume "got_int" was set to truncate the listing. */
got_int = FALSE;