comparison src/digraph.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 1886f2863437
children 83861277e6a3
comparison
equal deleted inserted replaced
7798:c8a2382de513 7799:af3c41a3c53f
26 char_u char1; 26 char_u char1;
27 char_u char2; 27 char_u char2;
28 result_T result; 28 result_T result;
29 } digr_T; 29 } digr_T;
30 30
31 static int getexactdigraph __ARGS((int, int, int)); 31 static int getexactdigraph(int, int, int);
32 static void printdigraph __ARGS((digr_T *)); 32 static void printdigraph(digr_T *);
33 33
34 /* digraphs added by the user */ 34 /* digraphs added by the user */
35 static garray_T user_digraphs = {0, 0, (int)sizeof(digr_T), 10, NULL}; 35 static garray_T user_digraphs = {0, 0, (int)sizeof(digr_T), 10, NULL};
36 36
37 /* 37 /*
2355 char_u *to; 2355 char_u *to;
2356 } kmap_T; 2356 } kmap_T;
2357 2357
2358 #define KMAP_MAXLEN 20 /* maximum length of "from" or "to" */ 2358 #define KMAP_MAXLEN 20 /* maximum length of "from" or "to" */
2359 2359
2360 static void keymap_unload __ARGS((void)); 2360 static void keymap_unload(void);
2361 2361
2362 /* 2362 /*
2363 * Set up key mapping tables for the 'keymap' option. 2363 * Set up key mapping tables for the 'keymap' option.
2364 * Returns NULL if OK, an error message for failure. This only needs to be 2364 * Returns NULL if OK, an error message for failure. This only needs to be
2365 * used when setting the option, not later when the value has already been 2365 * used when setting the option, not later when the value has already been