comparison src/arglist.c @ 17781:04245f071792 v8.1.1887

patch 8.1.1887: the +cmdline_compl feature is not in the tiny version commit https://github.com/vim/vim/commit/0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 18 22:26:31 2019 +0200 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Aug 2019 22:30:04 +0200
parents 4a3dca734d36
children 0b337617877e
comparison
equal deleted inserted replaced
17780:a65bba9901de 17781:04245f071792
815 #ifdef FEAT_TITLE 815 #ifdef FEAT_TITLE
816 maketitle(); 816 maketitle();
817 #endif 817 #endif
818 } 818 }
819 819
820 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
821 /* 820 /*
822 * Function given to ExpandGeneric() to obtain the possible arguments of the 821 * Function given to ExpandGeneric() to obtain the possible arguments of the
823 * argedit and argdelete commands. 822 * argedit and argdelete commands.
824 */ 823 */
825 char_u * 824 char_u *
828 if (idx >= ARGCOUNT) 827 if (idx >= ARGCOUNT)
829 return NULL; 828 return NULL;
830 829
831 return alist_name(&ARGLIST[idx]); 830 return alist_name(&ARGLIST[idx]);
832 } 831 }
833 #endif
834 832
835 /* 833 /*
836 * Get the file name for an argument list entry. 834 * Get the file name for an argument list entry.
837 */ 835 */
838 char_u * 836 char_u *