1
0
forked from aniani/vim

patch 7.4.1200

Problem:    Still using __ARGS.
Solution:   Remove __ARGS in several files. (script by Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-01-29 23:20:40 +01:00
parent baaa7e9ec7
commit d99df423c5
30 changed files with 97 additions and 121 deletions

View File

@@ -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. */