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_docmd.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_docmd.pro')
-rw-r--r-- | src/proto/ex_docmd.pro | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 373c75b4e..af40f4c87 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -22,17 +22,8 @@ char_u *get_command_name(expand_T *xp, int idx); void not_exiting(void); void tabpage_close(int forceit); void tabpage_close_other(tabpage_T *tp, int forceit); -void ex_all(exarg_T *eap); void handle_drop(int filec, char_u **filev, int split, void (*callback)(void *), void *cookie); void handle_any_postponed_drop(void); -void alist_clear(alist_T *al); -void alist_init(alist_T *al); -void alist_unlink(alist_T *al); -void alist_new(void); -void alist_expand(int *fnum_list, int fnum_len); -void alist_set(alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len); -void alist_add(alist_T *al, char_u *fname, int set_fnum); -void alist_slash_adjust(void); void ex_splitview(exarg_T *eap); void tabpage_new(void); void do_exedit(exarg_T *eap, win_T *old_curwin); |