comparison src/charset.c @ 7799:af3c41a3c53f v7.4.1196

commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 22:03:47 2016 +0100 patch 7.4.1196 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jan 2016 22:15:05 +0100
parents f04e2b6feea2
children 83861277e6a3
comparison
equal deleted inserted replaced
7798:c8a2382de513 7799:af3c41a3c53f
8 */ 8 */
9 9
10 #include "vim.h" 10 #include "vim.h"
11 11
12 #ifdef FEAT_LINEBREAK 12 #ifdef FEAT_LINEBREAK
13 static int win_chartabsize __ARGS((win_T *wp, char_u *p, colnr_T col)); 13 static int win_chartabsize(win_T *wp, char_u *p, colnr_T col);
14 #endif 14 #endif
15 15
16 #ifdef FEAT_MBYTE 16 #ifdef FEAT_MBYTE
17 # if defined(HAVE_WCHAR_H) 17 # if defined(HAVE_WCHAR_H)
18 # include <wchar.h> /* for towupper() and towlower() */ 18 # include <wchar.h> /* for towupper() and towlower() */
19 # endif 19 # endif
20 static int win_nolbr_chartabsize __ARGS((win_T *wp, char_u *s, colnr_T col, int *headp)); 20 static int win_nolbr_chartabsize(win_T *wp, char_u *s, colnr_T col, int *headp);
21 #endif 21 #endif
22 22
23 static unsigned nr2hex __ARGS((unsigned c)); 23 static unsigned nr2hex(unsigned c);
24 24
25 static int chartab_initialized = FALSE; 25 static int chartab_initialized = FALSE;
26 26
27 /* b_chartab[] is an array of 32 bytes, each bit representing one of the 27 /* b_chartab[] is an array of 32 bytes, each bit representing one of the
28 * characters 0-255. */ 28 * characters 0-255. */