summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
commit0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a (patch)
tree9860863c20df3f5354bf67a1d7efe054e23e8a99 /src/term.c
parent66b51420e0c8d49bcf6786b792c938d6099e3393 (diff)
downloadvim-git-0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a.tar.gz
patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887
Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/term.c b/src/term.c
index 2dc6cbd9b..7c2111b0e 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4299,7 +4299,6 @@ find_termcode(char_u *name)
return NULL;
}
-#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
char_u *
get_termcode(int i)
{
@@ -4307,7 +4306,6 @@ get_termcode(int i)
return NULL;
return &termcodes[i].name[0];
}
-#endif
void
del_termcode(char_u *name)
@@ -6700,7 +6698,6 @@ check_for_codes_from_term(void)
}
#endif
-#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
/*
* Translate an internal mapping/abbreviation representation into the
* corresponding external one recognized by :map/:abbrev commands.
@@ -6775,7 +6772,6 @@ translate_mapping(char_u *str)
ga_append(&ga, NUL);
return (char_u *)(ga.ga_data);
}
-#endif
#if (defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))) || defined(PROTO)
static char ksme_str[20];