comparison src/proto/ex_getln.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 8e9db1f27a00
children 636cfa97200e
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* ex_getln.c */ 1 /* ex_getln.c */
2 char_u *getcmdline __ARGS((int firstc, long count, int indent)); 2 char_u *getcmdline(int firstc, long count, int indent);
3 char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg)); 3 char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg);
4 int text_locked __ARGS((void)); 4 int text_locked(void);
5 void text_locked_msg __ARGS((void)); 5 void text_locked_msg(void);
6 int curbuf_locked __ARGS((void)); 6 int curbuf_locked(void);
7 int allbuf_locked __ARGS((void)); 7 int allbuf_locked(void);
8 char_u *getexline __ARGS((int c, void *cookie, int indent)); 8 char_u *getexline(int c, void *cookie, int indent);
9 char_u *getexmodeline __ARGS((int promptc, void *cookie, int indent)); 9 char_u *getexmodeline(int promptc, void *cookie, int indent);
10 int cmdline_overstrike __ARGS((void)); 10 int cmdline_overstrike(void);
11 int cmdline_at_end __ARGS((void)); 11 int cmdline_at_end(void);
12 colnr_T cmdline_getvcol_cursor __ARGS((void)); 12 colnr_T cmdline_getvcol_cursor(void);
13 void free_cmdline_buf __ARGS((void)); 13 void free_cmdline_buf(void);
14 void putcmdline __ARGS((int c, int shift)); 14 void putcmdline(int c, int shift);
15 void unputcmdline __ARGS((void)); 15 void unputcmdline(void);
16 int put_on_cmdline __ARGS((char_u *str, int len, int redraw)); 16 int put_on_cmdline(char_u *str, int len, int redraw);
17 char_u *save_cmdline_alloc __ARGS((void)); 17 char_u *save_cmdline_alloc(void);
18 void restore_cmdline_alloc __ARGS((char_u *p)); 18 void restore_cmdline_alloc(char_u *p);
19 void cmdline_paste_str __ARGS((char_u *s, int literally)); 19 void cmdline_paste_str(char_u *s, int literally);
20 void redrawcmdline __ARGS((void)); 20 void redrawcmdline(void);
21 void redrawcmd __ARGS((void)); 21 void redrawcmd(void);
22 void compute_cmdrow __ARGS((void)); 22 void compute_cmdrow(void);
23 void gotocmdline __ARGS((int clr)); 23 void gotocmdline(int clr);
24 char_u *ExpandOne __ARGS((expand_T *xp, char_u *str, char_u *orig, int options, int mode)); 24 char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode);
25 void ExpandInit __ARGS((expand_T *xp)); 25 void ExpandInit(expand_T *xp);
26 void ExpandCleanup __ARGS((expand_T *xp)); 26 void ExpandCleanup(expand_T *xp);
27 void ExpandEscape __ARGS((expand_T *xp, char_u *str, int numfiles, char_u **files, int options)); 27 void ExpandEscape(expand_T *xp, char_u *str, int numfiles, char_u **files, int options);
28 char_u *vim_strsave_fnameescape __ARGS((char_u *fname, int shell)); 28 char_u *vim_strsave_fnameescape(char_u *fname, int shell);
29 void tilde_replace __ARGS((char_u *orig_pat, int num_files, char_u **files)); 29 void tilde_replace(char_u *orig_pat, int num_files, char_u **files);
30 char_u *sm_gettail __ARGS((char_u *s)); 30 char_u *sm_gettail(char_u *s);
31 char_u *addstar __ARGS((char_u *fname, int len, int context)); 31 char_u *addstar(char_u *fname, int len, int context);
32 void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col)); 32 void set_cmd_context(expand_T *xp, char_u *str, int len, int col);
33 int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches)); 33 int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
34 int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int)), int escaped)); 34 int ExpandGeneric(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int)), int escaped);
35 void globpath __ARGS((char_u *path, char_u *file, garray_T *ga, int expand_options)); 35 void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
36 void init_history __ARGS((void)); 36 void init_history(void);
37 int get_histtype __ARGS((char_u *name)); 37 int get_histtype(char_u *name);
38 void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep)); 38 void add_to_history(int histype, char_u *new_entry, int in_map, int sep);
39 int get_history_idx __ARGS((int histype)); 39 int get_history_idx(int histype);
40 char_u *get_cmdline_str __ARGS((void)); 40 char_u *get_cmdline_str(void);
41 int get_cmdline_pos __ARGS((void)); 41 int get_cmdline_pos(void);
42 int set_cmdline_pos __ARGS((int pos)); 42 int set_cmdline_pos(int pos);
43 int get_cmdline_type __ARGS((void)); 43 int get_cmdline_type(void);
44 char_u *get_history_entry __ARGS((int histype, int idx)); 44 char_u *get_history_entry(int histype, int idx);
45 int clr_history __ARGS((int histype)); 45 int clr_history(int histype);
46 int del_history_entry __ARGS((int histype, char_u *str)); 46 int del_history_entry(int histype, char_u *str);
47 int del_history_idx __ARGS((int histype, int idx)); 47 int del_history_idx(int histype, int idx);
48 void remove_key_from_history __ARGS((void)); 48 void remove_key_from_history(void);
49 int get_list_range __ARGS((char_u **str, int *num1, int *num2)); 49 int get_list_range(char_u **str, int *num1, int *num2);
50 void ex_history __ARGS((exarg_T *eap)); 50 void ex_history(exarg_T *eap);
51 void prepare_viminfo_history __ARGS((int asklen, int writing)); 51 void prepare_viminfo_history(int asklen, int writing);
52 int read_viminfo_history __ARGS((vir_T *virp, int writing)); 52 int read_viminfo_history(vir_T *virp, int writing);
53 void finish_viminfo_history __ARGS((void)); 53 void finish_viminfo_history(void);
54 void write_viminfo_history __ARGS((FILE *fp, int merge)); 54 void write_viminfo_history(FILE *fp, int merge);
55 void cmd_pchar __ARGS((int c, int offset)); 55 void cmd_pchar(int c, int offset);
56 int cmd_gchar __ARGS((int offset)); 56 int cmd_gchar(int offset);
57 char_u *script_get __ARGS((exarg_T *eap, char_u *cmd)); 57 char_u *script_get(exarg_T *eap, char_u *cmd);
58 /* vim: set ft=c : */ 58 /* vim: set ft=c : */