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/fold.c | |
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/fold.c')
-rw-r--r-- | src/fold.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fold.c b/src/fold.c index b3e3a32ee..dcf96b9c1 100644 --- a/src/fold.c +++ b/src/fold.c @@ -2142,7 +2142,7 @@ typedef struct static int fold_changed; /* Function declarations. {{{2 */ -static linenr_T foldUpdateIEMSRecurse(garray_T *gap, int level, linenr_T startlnum, fline_T *flp, void (*getlevel)__ARGS((fline_T *)), linenr_T bot, int topflags); +static linenr_T foldUpdateIEMSRecurse(garray_T *gap, int level, linenr_T startlnum, fline_T *flp, void (*getlevel)(fline_T *), linenr_T bot, int topflags); static int foldInsert(garray_T *gap, int i); static void foldSplit(garray_T *gap, int i, linenr_T top, linenr_T bot); static void foldRemove(garray_T *gap, linenr_T top, linenr_T bot); @@ -2169,7 +2169,7 @@ foldUpdateIEMS(wp, top, bot) linenr_T start; linenr_T end; fline_T fline; - void (*getlevel)__ARGS((fline_T *)); + void (*getlevel)(fline_T *); int level; fold_T *fp; @@ -2422,7 +2422,7 @@ foldUpdateIEMSRecurse(gap, level, startlnum, flp, getlevel, bot, topflags) int level; linenr_T startlnum; fline_T *flp; - void (*getlevel)__ARGS((fline_T *)); + void (*getlevel)(fline_T *); linenr_T bot; int topflags; /* flags used by containing fold */ { |