summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-27 20:52:45 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-27 20:52:45 +0100
commit2d9d409ad4fab1ae7ceaecc0ef0e9b511d868374 (patch)
tree076fa03ebd2d8fd063cc5315e1b45ef556cb2c09 /src/evalfunc.c
parent191acfdecabfbd2a74867e77004196fb3b4a8c14 (diff)
patch 8.2.0464: typos and other small problemsv8.2.0463
Problem: Typos and other small problems. Solution: Fix the typos. Add missing file to distribution.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index b37dbb3810..5f290aa69e 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -280,13 +280,11 @@ ret_number(int argcount UNUSED, type_T **argtypes UNUSED)
{
return &t_number;
}
-#ifdef FEAT_FLOAT
static type_T *
ret_float(int argcount UNUSED, type_T **argtypes UNUSED)
{
return &t_float;
}
-#endif
static type_T *
ret_string(int argcount UNUSED, type_T **argtypes UNUSED)
{
@@ -336,7 +334,6 @@ ret_partial_void(int argcount UNUSED, type_T **argtypes UNUSED)
{
return &t_partial_void;
}
-#ifdef FEAT_JOB_CHANNEL
static type_T *
ret_channel(int argcount UNUSED, type_T **argtypes UNUSED)
{
@@ -347,7 +344,6 @@ ret_job(int argcount UNUSED, type_T **argtypes UNUSED)
{
return &t_job;
}
-#endif
static type_T *ret_f_function(int argcount, type_T **argtypes);