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/ex_eval.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/ex_eval.c')
-rw-r--r-- | src/ex_eval.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c index 04c31c21f..2632f0c9a 100644 --- a/src/ex_eval.c +++ b/src/ex_eval.c @@ -15,9 +15,9 @@ #if defined(FEAT_EVAL) || defined(PROTO) -static void free_msglist __ARGS((struct msglist *l)); -static int throw_exception __ARGS((void *, int, char_u *)); -static char_u *get_end_emsg __ARGS((struct condstack *cstack)); +static void free_msglist(struct msglist *l); +static int throw_exception(void *, int, char_u *); +static char_u *get_end_emsg(struct condstack *cstack); /* * Exception handling terms: @@ -65,10 +65,10 @@ static char_u *get_end_emsg __ARGS((struct condstack *cstack)); # define THROW_ON_INTERRUPT_TRUE #endif -static void catch_exception __ARGS((except_T *excp)); -static void finish_exception __ARGS((except_T *excp)); -static void discard_exception __ARGS((except_T *excp, int was_finished)); -static void report_pending __ARGS((int action, int pending, void *value)); +static void catch_exception(except_T *excp); +static void finish_exception(except_T *excp); +static void discard_exception(except_T *excp, int was_finished); +static void report_pending(int action, int pending, void *value); /* * When several errors appear in a row, setting "force_abort" is delayed until |