aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-10-18 08:38:15 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-10-18 12:51:35 -0300
commit42112e04a999c0f289939fce3142ef2c2517110a (patch)
tree5f2a1dd7395461be1bc6df7aa259fa8dd63008d3 /src/nvim/vim.h
parent68de5d79a243fecc9ef256d9d0356f8541aa3821 (diff)
downloadrneovim-42112e04a999c0f289939fce3142ef2c2517110a.tar.gz
rneovim-42112e04a999c0f289939fce3142ef2c2517110a.tar.bz2
rneovim-42112e04a999c0f289939fce3142ef2c2517110a.zip
ui: Refactor input buffer handling
All input buffer code was moved to os/input.c, and `inbuf` is now a `RBuffer` instance(which abstracts static buffer manipulation).
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 3ef291ef7c..47ed223e81 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -339,10 +339,6 @@ enum {
#define fnamencmp(x, y, n) vim_fnamencmp((char_u *)(x), (char_u *)(y), \
(size_t)(n))
-#if defined(UNIX) || defined(FEAT_GUI)
-# define USE_INPUT_BUF
-#endif
-
#ifndef EINTR
# define read_eintr(fd, buf, count) vim_read((fd), (buf), (count))
# define write_eintr(fd, buf, count) vim_write((fd), (buf), (count))