diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:13:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:13:30 +0100 |
commit | d25c16e2f2776d50245bf31d6e4d5364f12d188e (patch) | |
tree | 8eefb6b460409f4d5351bd7fa4cac4ea032714b3 /src/getchar.c | |
parent | f28dbcea371b3a35727d91afc90fb90e0527d78a (diff) | |
download | vim-git-d25c16e2f2776d50245bf31d6e4d5364f12d188e.tar.gz |
patch 7.4.1197v7.4.1197
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/getchar.c')
-rw-r--r-- | src/getchar.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/getchar.c b/src/getchar.c index 5b5eab387..e6a4f0b3f 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -112,25 +112,25 @@ static char_u noremapbuf_init[TYPELEN_INIT]; /* initial typebuf.tb_noremap */ static int last_recorded_len = 0; /* number of last recorded chars */ -static char_u *get_buffcont __ARGS((buffheader_T *, int)); -static void add_buff __ARGS((buffheader_T *, char_u *, long n)); -static void add_num_buff __ARGS((buffheader_T *, long)); -static void add_char_buff __ARGS((buffheader_T *, int)); -static int read_readbuffers __ARGS((int advance)); -static int read_readbuf __ARGS((buffheader_T *buf, int advance)); -static void start_stuff __ARGS((void)); -static int read_redo __ARGS((int, int)); -static void copy_redo __ARGS((int)); -static void init_typebuf __ARGS((void)); -static void gotchars __ARGS((char_u *, int)); -static void may_sync_undo __ARGS((void)); -static void closescript __ARGS((void)); -static int vgetorpeek __ARGS((int)); -static void map_free __ARGS((mapblock_T **)); -static void validate_maphash __ARGS((void)); -static void showmap __ARGS((mapblock_T *mp, int local)); +static char_u *get_buffcont(buffheader_T *, int); +static void add_buff(buffheader_T *, char_u *, long n); +static void add_num_buff(buffheader_T *, long); +static void add_char_buff(buffheader_T *, int); +static int read_readbuffers(int advance); +static int read_readbuf(buffheader_T *buf, int advance); +static void start_stuff(void); +static int read_redo(int, int); +static void copy_redo(int); +static void init_typebuf(void); +static void gotchars(char_u *, int); +static void may_sync_undo(void); +static void closescript(void); +static int vgetorpeek(int); +static void map_free(mapblock_T **); +static void validate_maphash(void); +static void showmap(mapblock_T *mp, int local); #ifdef FEAT_EVAL -static char_u *eval_map_expr __ARGS((char_u *str, int c)); +static char_u *eval_map_expr(char_u *str, int c); #endif /* |