comparison src/proto/ex_cmds.pro @ 7668:21b0a39d13ed v7.4.1133

commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 19 13:22:12 2016 +0100 patch 7.4.1133 Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jan 2016 13:30:06 +0100
parents 2c63e9ecf29d
children 636cfa97200e
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* ex_cmds.c */ 1 /* ex_cmds.c */
2 void do_ascii __ARGS((exarg_T *eap)); 2 void do_ascii(exarg_T *eap);
3 void ex_align __ARGS((exarg_T *eap)); 3 void ex_align(exarg_T *eap);
4 void ex_sort __ARGS((exarg_T *eap)); 4 void ex_sort(exarg_T *eap);
5 void ex_retab __ARGS((exarg_T *eap)); 5 void ex_retab(exarg_T *eap);
6 int do_move __ARGS((linenr_T line1, linenr_T line2, linenr_T dest)); 6 int do_move(linenr_T line1, linenr_T line2, linenr_T dest);
7 void ex_copy __ARGS((linenr_T line1, linenr_T line2, linenr_T n)); 7 void ex_copy(linenr_T line1, linenr_T line2, linenr_T n);
8 void free_prev_shellcmd __ARGS((void)); 8 void free_prev_shellcmd(void);
9 void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out)); 9 void do_bang(int addr_count, exarg_T *eap, int forceit, int do_in, int do_out);
10 void do_shell __ARGS((char_u *cmd, int flags)); 10 void do_shell(char_u *cmd, int flags);
11 char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp)); 11 char_u *make_filter_cmd(char_u *cmd, char_u *itmp, char_u *otmp);
12 void append_redir __ARGS((char_u *buf, int buflen, char_u *opt, char_u *fname)); 12 void append_redir(char_u *buf, int buflen, char_u *opt, char_u *fname);
13 int viminfo_error __ARGS((char *errnum, char *message, char_u *line)); 13 int viminfo_error(char *errnum, char *message, char_u *line);
14 int read_viminfo __ARGS((char_u *file, int flags)); 14 int read_viminfo(char_u *file, int flags);
15 void write_viminfo __ARGS((char_u *file, int forceit)); 15 void write_viminfo(char_u *file, int forceit);
16 int viminfo_readline __ARGS((vir_T *virp)); 16 int viminfo_readline(vir_T *virp);
17 char_u *viminfo_readstring __ARGS((vir_T *virp, int off, int convert)); 17 char_u *viminfo_readstring(vir_T *virp, int off, int convert);
18 void viminfo_writestring __ARGS((FILE *fd, char_u *p)); 18 void viminfo_writestring(FILE *fd, char_u *p);
19 void do_fixdel __ARGS((exarg_T *eap)); 19 void do_fixdel(exarg_T *eap);
20 void print_line_no_prefix __ARGS((linenr_T lnum, int use_number, int list)); 20 void print_line_no_prefix(linenr_T lnum, int use_number, int list);
21 void print_line __ARGS((linenr_T lnum, int use_number, int list)); 21 void print_line(linenr_T lnum, int use_number, int list);
22 int rename_buffer __ARGS((char_u *new_fname)); 22 int rename_buffer(char_u *new_fname);
23 void ex_file __ARGS((exarg_T *eap)); 23 void ex_file(exarg_T *eap);
24 void ex_update __ARGS((exarg_T *eap)); 24 void ex_update(exarg_T *eap);
25 void ex_write __ARGS((exarg_T *eap)); 25 void ex_write(exarg_T *eap);
26 int do_write __ARGS((exarg_T *eap)); 26 int do_write(exarg_T *eap);
27 int check_overwrite __ARGS((exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other)); 27 int check_overwrite(exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other);
28 void ex_wnext __ARGS((exarg_T *eap)); 28 void ex_wnext(exarg_T *eap);
29 void do_wqall __ARGS((exarg_T *eap)); 29 void do_wqall(exarg_T *eap);
30 int not_writing __ARGS((void)); 30 int not_writing(void);
31 int getfile __ARGS((int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit)); 31 int getfile(int fnum, char_u *ffname, char_u *sfname, int setpm, linenr_T lnum, int forceit);
32 int do_ecmd __ARGS((int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin)); 32 int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T newlnum, int flags, win_T *oldwin);
33 void ex_append __ARGS((exarg_T *eap)); 33 void ex_append(exarg_T *eap);
34 void ex_change __ARGS((exarg_T *eap)); 34 void ex_change(exarg_T *eap);
35 void ex_z __ARGS((exarg_T *eap)); 35 void ex_z(exarg_T *eap);
36 int check_restricted __ARGS((void)); 36 int check_restricted(void);
37 int check_secure __ARGS((void)); 37 int check_secure(void);
38 void do_sub __ARGS((exarg_T *eap)); 38 void do_sub(exarg_T *eap);
39 int do_sub_msg __ARGS((int count_only)); 39 int do_sub_msg(int count_only);
40 void ex_global __ARGS((exarg_T *eap)); 40 void ex_global(exarg_T *eap);
41 void global_exe __ARGS((char_u *cmd)); 41 void global_exe(char_u *cmd);
42 int read_viminfo_sub_string __ARGS((vir_T *virp, int force)); 42 int read_viminfo_sub_string(vir_T *virp, int force);
43 void write_viminfo_sub_string __ARGS((FILE *fp)); 43 void write_viminfo_sub_string(FILE *fp);
44 void free_old_sub __ARGS((void)); 44 void free_old_sub(void);
45 int prepare_tagpreview __ARGS((int undo_sync)); 45 int prepare_tagpreview(int undo_sync);
46 void ex_help __ARGS((exarg_T *eap)); 46 void ex_help(exarg_T *eap);
47 void ex_helpclose __ARGS((exarg_T *eap)); 47 void ex_helpclose(exarg_T *eap);
48 char_u *check_help_lang __ARGS((char_u *arg)); 48 char_u *check_help_lang(char_u *arg);
49 int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case)); 49 int help_heuristic(char_u *matched_string, int offset, int wrong_case);
50 int find_help_tags __ARGS((char_u *arg, int *num_matches, char_u ***matches, int keep_lang)); 50 int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
51 void fix_help_buffer __ARGS((void)); 51 void fix_help_buffer(void);
52 void ex_exusage __ARGS((exarg_T *eap)); 52 void ex_exusage(exarg_T *eap);
53 void ex_viusage __ARGS((exarg_T *eap)); 53 void ex_viusage(exarg_T *eap);
54 void ex_helptags __ARGS((exarg_T *eap)); 54 void ex_helptags(exarg_T *eap);
55 void ex_sign __ARGS((exarg_T *eap)); 55 void ex_sign(exarg_T *eap);
56 void sign_gui_started __ARGS((void)); 56 void sign_gui_started(void);
57 int sign_get_attr __ARGS((int typenr, int line)); 57 int sign_get_attr(int typenr, int line);
58 char_u *sign_get_text __ARGS((int typenr)); 58 char_u *sign_get_text(int typenr);
59 void *sign_get_image __ARGS((int typenr)); 59 void *sign_get_image(int typenr);
60 char_u *sign_typenr2name __ARGS((int typenr)); 60 char_u *sign_typenr2name(int typenr);
61 void free_signs __ARGS((void)); 61 void free_signs(void);
62 char_u *get_sign_name __ARGS((expand_T *xp, int idx)); 62 char_u *get_sign_name(expand_T *xp, int idx);
63 void set_context_in_sign_cmd __ARGS((expand_T *xp, char_u *arg)); 63 void set_context_in_sign_cmd(expand_T *xp, char_u *arg);
64 void ex_smile __ARGS((exarg_T *eap)); 64 void ex_smile(exarg_T *eap);
65 void ex_drop __ARGS((exarg_T *eap)); 65 void ex_drop(exarg_T *eap);
66 /* vim: set ft=c : */ 66 /* vim: set ft=c : */