patch 7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 90327d2..6afe06f 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4709,7 +4709,7 @@
static struct expgen
{
int context;
- char_u *((*func)__ARGS((expand_T *, int)));
+ char_u *((*func)(expand_T *, int));
int ic;
int escaped;
} tab[] =
@@ -4804,7 +4804,7 @@
regmatch_T *regmatch;
int *num_file;
char_u ***file;
- char_u *((*func)__ARGS((expand_T *, int)));
+ char_u *((*func)(expand_T *, int));
/* returns a string from the list */
int escaped;
{