aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 4d28996d55..944ec1829a 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -6708,7 +6708,6 @@ static struct fst {
{ "did_filetype", 0, 0, f_did_filetype },
{ "diff_filler", 1, 1, f_diff_filler },
{ "diff_hlID", 2, 2, f_diff_hlID },
- { "disable_char_avail_for_testing", 1, 1, f_disable_char_avail_for_testing },
{ "empty", 1, 1, f_empty },
{ "escape", 2, 2, f_escape },
{ "eval", 1, 1, f_eval },
@@ -8604,15 +8603,6 @@ static void f_diff_hlID(typval_T *argvars, typval_T *rettv)
rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
}
-//
-// "disable_char_avail_for_testing({expr})" function
-//
-static void f_disable_char_avail_for_testing(typval_T *argvars, typval_T *rettv)
- FUNC_ATTR_NONNULL_ARG(1)
-{
- disable_char_avail_for_testing = get_tv_number(&argvars[0]);
-}
-
/*
* "empty({expr})" function
*/