diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-17 14:38:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-17 14:38:55 +0200 |
commit | 4ad62155a1015751a6645aaecd94b02c94c8934b (patch) | |
tree | 72d2dab4221986c394ca9f444dfe86cfabe51cfe /src/proto/ex_cmds2.pro | |
parent | 69cbbecf548f390197259ca30cfe147c3e59ce5a (diff) | |
download | vim-git-4ad62155a1015751a6645aaecd94b02c94c8934b.tar.gz |
patch 8.1.1869: code for the argument list is spread outv8.1.1869
Problem: Code for the argument list is spread out.
Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan,
closes #4819)
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index b66be2f69..9d45c7e16 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -18,21 +18,7 @@ int can_abandon(buf_T *buf, int forceit); int check_changed_any(int hidden, int unload); int check_fname(void); int buf_write_all(buf_T *buf, int forceit); -int get_arglist_exp(char_u *str, int *fcountp, char_u ***fnamesp, int wig); -void set_arglist(char_u *str); -void check_arg_idx(win_T *win); -void ex_args(exarg_T *eap); -void ex_previous(exarg_T *eap); -void ex_rewind(exarg_T *eap); -void ex_last(exarg_T *eap); -void ex_argument(exarg_T *eap); -void do_argfile(exarg_T *eap, int argn); -void ex_next(exarg_T *eap); -void ex_argedit(exarg_T *eap); -void ex_argadd(exarg_T *eap); -void ex_argdelete(exarg_T *eap); void ex_listdo(exarg_T *eap); -char_u *get_arglist_name(expand_T *xp, int idx); void ex_compiler(exarg_T *eap); void ex_runtime(exarg_T *eap); int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); |