comparison src/proto/ex_docmd.pro @ 17744:4a3dca734d36 v8.1.1869

patch 8.1.1869: code for the argument list is spread out commit https://github.com/vim/vim/commit/4ad62155a1015751a6645aaecd94b02c94c8934b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 17 14:38:55 2019 +0200 patch 8.1.1869: code for the argument list is spread out Problem: Code for the argument list is spread out. Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan, closes #4819)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Aug 2019 14:45:04 +0200
parents 40c4cb095d53
children fd6c8dc33152
comparison
equal deleted inserted replaced
17743:4ca7a477f326 17744:4a3dca734d36
20 char_u *check_nextcmd(char_u *p); 20 char_u *check_nextcmd(char_u *p);
21 char_u *get_command_name(expand_T *xp, int idx); 21 char_u *get_command_name(expand_T *xp, int idx);
22 void not_exiting(void); 22 void not_exiting(void);
23 void tabpage_close(int forceit); 23 void tabpage_close(int forceit);
24 void tabpage_close_other(tabpage_T *tp, int forceit); 24 void tabpage_close_other(tabpage_T *tp, int forceit);
25 void ex_all(exarg_T *eap);
26 void handle_drop(int filec, char_u **filev, int split, void (*callback)(void *), void *cookie); 25 void handle_drop(int filec, char_u **filev, int split, void (*callback)(void *), void *cookie);
27 void handle_any_postponed_drop(void); 26 void handle_any_postponed_drop(void);
28 void alist_clear(alist_T *al);
29 void alist_init(alist_T *al);
30 void alist_unlink(alist_T *al);
31 void alist_new(void);
32 void alist_expand(int *fnum_list, int fnum_len);
33 void alist_set(alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len);
34 void alist_add(alist_T *al, char_u *fname, int set_fnum);
35 void alist_slash_adjust(void);
36 void ex_splitview(exarg_T *eap); 27 void ex_splitview(exarg_T *eap);
37 void tabpage_new(void); 28 void tabpage_new(void);
38 void do_exedit(exarg_T *eap, win_T *old_curwin); 29 void do_exedit(exarg_T *eap, win_T *old_curwin);
39 void free_cd_dir(void); 30 void free_cd_dir(void);
40 void post_chdir(cdscope_T cdscope); 31 void post_chdir(cdscope_T cdscope);