diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-18 22:26:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-18 22:26:31 +0200 |
commit | 0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a (patch) | |
tree | 9860863c20df3f5354bf67a1d7efe054e23e8a99 /src/arglist.c | |
parent | 66b51420e0c8d49bcf6786b792c938d6099e3393 (diff) | |
download | vim-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/arglist.c')
-rw-r--r-- | src/arglist.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arglist.c b/src/arglist.c index b8f2e2a6f..b1a6a0b2f 100644 --- a/src/arglist.c +++ b/src/arglist.c @@ -817,7 +817,6 @@ ex_argdelete(exarg_T *eap) #endif } -#if defined(FEAT_CMDL_COMPL) || defined(PROTO) /* * Function given to ExpandGeneric() to obtain the possible arguments of the * argedit and argdelete commands. @@ -830,7 +829,6 @@ get_arglist_name(expand_T *xp UNUSED, int idx) return alist_name(&ARGLIST[idx]); } -#endif /* * Get the file name for an argument list entry. |