diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-11 23:58:31 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:54 -0400 |
commit | a29b94e2f95d06abd294c454adba819de079d2d2 (patch) | |
tree | 8f6b0e31546bfb9e895d6fded0b241f50f82d168 /src/nvim/ui.c | |
parent | 5f2ccb94d2103969aabed9e57f1a0b0b691a3356 (diff) | |
download | rneovim-a29b94e2f95d06abd294c454adba819de079d2d2.tar.gz rneovim-a29b94e2f95d06abd294c454adba819de079d2d2.tar.bz2 rneovim-a29b94e2f95d06abd294c454adba819de079d2d2.zip |
Remove FEAT_EVAL
Support for VimScript, :let, :if, etc.
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 1ef76d516c..e00ee8b8d0 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -352,16 +352,12 @@ void add_to_input_buf_csi(char_u *str, int len) { #endif -#if defined(FEAT_GUI) || defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) \ - || defined(PROTO) /* Remove everything from the input buffer. Called when ^C is found */ void trash_input_buf(void) { inbufcount = 0; } -#endif - /* * Read as much data from the input buffer as possible up to maxlen, and store * it in buf. |