From 541eaf598c25e0b853ef441b57c9f7d1bbf3450c Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 27 Nov 2014 12:54:26 -0300 Subject: ui: Remove ui_inchar/ui_char_avail Also: - Remove NO_CONSOLE_INPUT/NO_CONSULE preprocessor conditionals - Remove ctrl_c_interrupts variable, check for mapped_ctrl_c directly in process_interrupts() - Move ui_inchar profiling to input_poll which is where Nvim blocks for input. --- src/nvim/message.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/nvim/message.c') diff --git a/src/nvim/message.c b/src/nvim/message.c index 23feeab173..6b17c00417 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -2702,11 +2702,9 @@ do_dialog ( int c; int i; -#ifndef NO_CONSOLE /* Don't output anything in silent mode ("ex -s") */ if (silent_mode) return dfltbutton; /* return default option */ -#endif oldState = State; -- cgit