From f28dbcea371b3a35727d91afc90fb90e0527d78a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 29 Jan 2016 22:03:47 +0100 Subject: patch 7.4.1196 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) --- src/charset.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/charset.c') diff --git a/src/charset.c b/src/charset.c index 8a4fb7d6c3..4df4e7f327 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 /* 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; -- cgit v1.2.3