diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
commit | d99df423c559d85c17779b3685426c489554908c (patch) | |
tree | 13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/ex_cmds.h | |
parent | baaa7e9ec7398a813e21285c272fa99792642077 (diff) | |
download | vim-git-d99df423c559d85c17779b3685426c489554908c.tar.gz |
patch 7.4.1200v7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 78c0afa63..89f84ede0 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -85,7 +85,7 @@ typedef struct exarg exarg_T; #ifdef DO_DECLARE_EXCMD # define EX(a, b, c, d, e) {(char_u *)b, c, (long_u)(d), e} -typedef void (*ex_func_T) __ARGS((exarg_T *eap)); +typedef void (*ex_func_T) (exarg_T *eap); static struct cmdname { @@ -1739,7 +1739,7 @@ struct exarg int useridx; /* user command index */ #endif char_u *errmsg; /* returned error message */ - char_u *(*getline) __ARGS((int, void *, int)); + char_u *(*getline)(int, void *, int); void *cookie; /* argument for getline() */ #ifdef FEAT_EVAL struct condstack *cstack; /* condition stack for ":if" etc. */ |