comparison src/ex_getln.c @ 7807:1a5d34492798 v7.4.1200

commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 23:20:40 2016 +0100 patch 7.4.1200 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 23:30:06 +0100
parents a1e71a01dbd6
children f86adafb28d4
comparison
equal deleted inserted replaced
7806:eb2af74e899a 7807:1a5d34492798
4707 else 4707 else
4708 { 4708 {
4709 static struct expgen 4709 static struct expgen
4710 { 4710 {
4711 int context; 4711 int context;
4712 char_u *((*func)__ARGS((expand_T *, int))); 4712 char_u *((*func)(expand_T *, int));
4713 int ic; 4713 int ic;
4714 int escaped; 4714 int escaped;
4715 } tab[] = 4715 } tab[] =
4716 { 4716 {
4717 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, 4717 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE},
4802 ExpandGeneric(xp, regmatch, num_file, file, func, escaped) 4802 ExpandGeneric(xp, regmatch, num_file, file, func, escaped)
4803 expand_T *xp; 4803 expand_T *xp;
4804 regmatch_T *regmatch; 4804 regmatch_T *regmatch;
4805 int *num_file; 4805 int *num_file;
4806 char_u ***file; 4806 char_u ***file;
4807 char_u *((*func)__ARGS((expand_T *, int))); 4807 char_u *((*func)(expand_T *, int));
4808 /* returns a string from the list */ 4808 /* returns a string from the list */
4809 int escaped; 4809 int escaped;
4810 { 4810 {
4811 int i; 4811 int i;
4812 int count = 0; 4812 int count = 0;