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/message.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/message.c')
-rw-r--r-- | src/nvim/message.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 9bdcbf6c78..be23ac0450 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -156,7 +156,6 @@ int msg(char_u *s) return msg_attr_keep(s, 0, FALSE); } -#if defined(FEAT_EVAL) || defined(FEAT_GUI_GTK) || defined(PROTO) /* * Like msg() but keep it silent when 'verbosefile' is set. */ @@ -170,7 +169,6 @@ int verb_msg(char_u *s) return n; } -#endif int msg_attr(char_u *s, int attr) { @@ -3054,7 +3052,6 @@ int vim_dialog_yesnoallcancel(int type, char_u *title, char_u *message, int dflt -#if defined(FEAT_EVAL) static char *e_printf = N_("E766: Insufficient arguments for printf()"); static long tv_nr(typval_T *tvs, int *idxp); @@ -3120,7 +3117,6 @@ static double tv_float(typval_T *tvs, int *idxp) } return f; } -#endif /* * This code was included to provide a portable vsnprintf() and snprintf(). |