aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c4
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().