diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:03:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:03:47 +0100 |
commit | f28dbcea371b3a35727d91afc90fb90e0527d78a (patch) | |
tree | df3ced3771c8d6900fc2e65ffa37e89566f215ba /src/charset.c | |
parent | f12d983deab06b0408781d7a6c2f8970d765b723 (diff) | |
download | vim-git-f28dbcea371b3a35727d91afc90fb90e0527d78a.tar.gz |
patch 7.4.1196v7.4.1196
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 8a4fb7d6c..4df4e7f32 100644 --- a/src/charset.c +++ b/src/charset.c @@ -10,17 +10,17 @@ #include "vim.h" #ifdef FEAT_LINEBREAK -static int win_chartabsize __ARGS((win_T *wp, char_u *p, colnr_T col)); +static int win_chartabsize(win_T *wp, char_u *p, colnr_T col); #endif #ifdef FEAT_MBYTE # if defined(HAVE_WCHAR_H) # include <wchar.h> /* for towupper() and towlower() */ # endif -static int win_nolbr_chartabsize __ARGS((win_T *wp, char_u *s, colnr_T col, int *headp)); +static int win_nolbr_chartabsize(win_T *wp, char_u *s, colnr_T col, int *headp); #endif -static unsigned nr2hex __ARGS((unsigned c)); +static unsigned nr2hex(unsigned c); static int chartab_initialized = FALSE; |