diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:36:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:36:45 +0100 |
commit | 92b8b2d307e34117f146319872010b0ccc9d2713 (patch) | |
tree | 14592978271f07a5bebd2e7001c2c1f2e7c3a60b /src/mark.c | |
parent | d25c16e2f2776d50245bf31d6e4d5364f12d188e (diff) | |
download | vim-git-92b8b2d307e34117f146319872010b0ccc9d2713.tar.gz |
patch 7.4.1198v7.4.1198
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Also remove use of HAVE_STDARG_H.
Diffstat (limited to 'src/mark.c')
-rw-r--r-- | src/mark.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mark.c b/src/mark.c index ef9ddc07e..284fedfeb 100644 --- a/src/mark.c +++ b/src/mark.c @@ -27,15 +27,15 @@ #define EXTRA_MARKS 10 /* marks 0-9 */ static xfmark_T namedfm[NMARKS + EXTRA_MARKS]; /* marks with file nr */ -static void fname2fnum __ARGS((xfmark_T *fm)); -static void fmarks_check_one __ARGS((xfmark_T *fm, char_u *name, buf_T *buf)); -static char_u *mark_line __ARGS((pos_T *mp, int lead_len)); -static void show_one_mark __ARGS((int, char_u *, pos_T *, char_u *, int current)); +static void fname2fnum(xfmark_T *fm); +static void fmarks_check_one(xfmark_T *fm, char_u *name, buf_T *buf); +static char_u *mark_line(pos_T *mp, int lead_len); +static void show_one_mark(int, char_u *, pos_T *, char_u *, int current); #ifdef FEAT_JUMPLIST -static void cleanup_jumplist __ARGS((void)); +static void cleanup_jumplist(void); #endif #ifdef FEAT_VIMINFO -static void write_one_filemark __ARGS((FILE *fp, xfmark_T *fm, int c1, int c2)); +static void write_one_filemark(FILE *fp, xfmark_T *fm, int c1, int c2); #endif /* @@ -1558,7 +1558,7 @@ removable(name) return retval; } -static void write_one_mark __ARGS((FILE *fp_out, int c, pos_T *pos)); +static void write_one_mark(FILE *fp_out, int c, pos_T *pos); /* * Write all the named marks for all buffers. |