0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.1210

Problem:    Using old style function declarations.
Solution:   Change to new style function declarations. (script by Hirohito
            Higashi)
This commit is contained in:
Bram Moolenaar
2016-01-30 18:51:09 +01:00
parent 02fdaeaa69
commit 52ea13da0f
9 changed files with 683 additions and 1111 deletions

View File

@@ -165,9 +165,7 @@ VimMain
# else
main
# endif
(argc, argv)
int argc;
char **argv;
(int argc, char **argv)
{
char_u *fname = NULL; /* file name from command line */
mparm_T params; /* various parameters passed between
@@ -1534,10 +1532,10 @@ getout(int exitval)
* Get a (optional) count for a Vim argument.
*/
static int
get_number_arg(p, idx, def)
char_u *p; /* pointer to argument */
int *idx; /* index in argument, is incremented */
int def; /* default value */
get_number_arg(
char_u *p, /* pointer to argument */
int *idx, /* index in argument, is incremented */
int def) /* default value */
{
if (vim_isdigit(p[*idx]))
{
@@ -1553,7 +1551,7 @@ get_number_arg(p, idx, def)
* Setup to use the current locale (for ctype() and many other things).
*/
static void
init_locale()
init_locale(void)
{
setlocale(LC_ALL, "");
@@ -1609,8 +1607,7 @@ init_locale()
* by "im" use improved Ex mode.
*/
static void
parse_command_name(parmp)
mparm_T *parmp;
parse_command_name(mparm_T *parmp)
{
char_u *initstr;
@@ -1700,8 +1697,7 @@ parse_command_name(parmp)
* Also find the --server... arguments and --socketid and --windowid
*/
static void
early_arg_scan(parmp)
mparm_T *parmp UNUSED;
early_arg_scan(mparm_T *parmp UNUSED)
{
#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
|| !defined(FEAT_NETBEANS_INTG)
@@ -1792,8 +1788,7 @@ early_arg_scan(parmp)
* Scan the command line arguments.
*/
static void
command_line_scan(parmp)
mparm_T *parmp;
command_line_scan(mparm_T *parmp)
{
int argc = parmp->argc;
char **argv = parmp->argv;
@@ -2512,8 +2507,7 @@ scripterror:
* When starting in Ex mode and commands come from a file, set Silent mode.
*/
static void
check_tty(parmp)
mparm_T *parmp;
check_tty(mparm_T *parmp)
{
int input_isatty; /* is active input a terminal? */
@@ -2559,7 +2553,7 @@ check_tty(parmp)
* Read text from stdin.
*/
static void
read_stdin()
read_stdin(void)
{
int i;
@@ -2593,8 +2587,7 @@ read_stdin()
* Also does recovery if "recoverymode" set.
*/
static void
create_windows(parmp)
mparm_T *parmp UNUSED;
create_windows(mparm_T *parmp UNUSED)
{
#ifdef FEAT_WINDOWS
int dorewind;
@@ -2747,9 +2740,9 @@ create_windows(parmp)
* windows. make_windows() has already opened the windows.
*/
static void
edit_buffers(parmp, cwd)
mparm_T *parmp;
char_u *cwd; /* current working dir */
edit_buffers(
mparm_T *parmp,
char_u *cwd) /* current working dir */
{
int arg_idx; /* index in argument list */
int i;
@@ -2876,8 +2869,7 @@ edit_buffers(parmp, cwd)
* Execute the commands from --cmd arguments "cmds[cnt]".
*/
static void
exe_pre_commands(parmp)
mparm_T *parmp;
exe_pre_commands(mparm_T *parmp)
{
char_u **cmds = parmp->pre_commands;
int cnt = parmp->n_pre_commands;
@@ -2904,8 +2896,7 @@ exe_pre_commands(parmp)
* Execute "+", "-c" and "-S" arguments.
*/
static void
exe_commands(parmp)
mparm_T *parmp;
exe_commands(mparm_T *parmp)
{
int i;
@@ -2949,8 +2940,7 @@ exe_commands(parmp)
* Source startup scripts.
*/
static void
source_startup_scripts(parmp)
mparm_T *parmp;
source_startup_scripts(mparm_T *parmp)
{
int i;
@@ -3108,7 +3098,7 @@ source_startup_scripts(parmp)
* Setup to start using the GUI. Exit with an error when not available.
*/
static void
main_start_gui()
main_start_gui(void)
{
#ifdef FEAT_GUI
gui.starting = TRUE; /* start GUI a bit later */
@@ -3126,9 +3116,9 @@ main_start_gui()
* Returns FAIL if the environment variable was not executed, OK otherwise.
*/
int
process_env(env, is_viminit)
char_u *env;
int is_viminit; /* when TRUE, called for VIMINIT */
process_env(
char_u *env,
int is_viminit) /* when TRUE, called for VIMINIT */
{
char_u *initstr;
char_u *save_sourcing_name;
@@ -3167,8 +3157,7 @@ process_env(env, is_viminit)
* Use both stat() and lstat() for extra security.
*/
static int
file_owned(fname)
char *fname;
file_owned(char *fname)
{
struct stat s;
# ifdef UNIX
@@ -3189,9 +3178,9 @@ file_owned(fname)
* Give an error message main_errors["n"] and exit.
*/
static void
mainerr(n, str)
int n; /* one of the ME_ defines */
char_u *str; /* extra argument or NULL */
mainerr(
int n, /* one of the ME_ defines */
char_u *str) /* extra argument or NULL */
{
#if defined(UNIX) || defined(__EMX__) || defined(VMS)
reset_signals(); /* kill us with CTRL-C here, if you like */
@@ -3212,8 +3201,7 @@ mainerr(n, str)
}
void
mainerr_arg_missing(str)
char_u *str;
mainerr_arg_missing(char_u *str)
{
mainerr(ME_ARG_MISSING, str);
}
@@ -3223,8 +3211,7 @@ mainerr_arg_missing(str)
* print a message with three spaces prepended and '\n' appended.
*/
static void
main_msg(s)
char *s;
main_msg(char *s)
{
mch_msg(" ");
mch_msg(s);
@@ -3235,7 +3222,7 @@ main_msg(s)
* Print messages for "vim -h" or "vim --help" and exit.
*/
static void
usage()
usage(void)
{
int i;
static char *(use[]) =
@@ -3431,7 +3418,7 @@ usage()
* When "Recover" selected, recover the file.
*/
static void
check_swap_exists_action()
check_swap_exists_action(void)
{
if (swap_exists_action == SEA_QUIT)
getout(1);
@@ -3465,8 +3452,7 @@ gettimeofday(struct timeval *tv, char *dummy)
* set "*tv_rel" to the time elapsed so far.
*/
void
time_push(tv_rel, tv_start)
void *tv_rel, *tv_start;
time_push(void *tv_rel, void *tv_start)
{
*((struct timeval *)tv_rel) = prev_timeval;
gettimeofday(&prev_timeval, NULL);
@@ -3489,8 +3475,8 @@ time_push(tv_rel, tv_start)
* have struct timeval.
*/
void
time_pop(tp)
void *tp; /* actually (struct timeval *) */
time_pop(
void *tp) /* actually (struct timeval *) */
{
prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
@@ -3502,9 +3488,7 @@ time_pop(tp)
}
static void
time_diff(then, now)
struct timeval *then;
struct timeval *now;
time_diff(struct timeval *then, struct timeval *now)
{
long usec;
long msec;
@@ -3516,9 +3500,9 @@ time_diff(then, now)
}
void
time_msg(mesg, tv_start)
char *mesg;
void *tv_start; /* only for do_source: start time; actually
time_msg(
char *mesg,
void *tv_start) /* only for do_source: start time; actually
(struct timeval *) */
{
static struct timeval start;
@@ -3562,8 +3546,7 @@ static char_u *build_drop_cmd(int filec, char **filev, int tabs, int sendReply);
* Do the client-server stuff, unless "--servername ''" was used.
*/
static void
exec_on_server(parmp)
mparm_T *parmp;
exec_on_server(mparm_T *parmp)
{
if (parmp->serverName_arg == NULL || *parmp->serverName_arg != NUL)
{
@@ -3605,8 +3588,7 @@ exec_on_server(parmp)
* Prepare for running as a Vim server.
*/
static void
prepare_server(parmp)
mparm_T *parmp;
prepare_server(mparm_T *parmp)
{
# if defined(FEAT_X11)
/*
@@ -3648,11 +3630,11 @@ prepare_server(parmp)
}
static void
cmdsrv_main(argc, argv, serverName_arg, serverStr)
int *argc;
char **argv;
char_u *serverName_arg;
char_u **serverStr;
cmdsrv_main(
int *argc,
char **argv,
char_u *serverName_arg,
char_u **serverStr)
{
char_u *res;
int i;
@@ -3924,11 +3906,11 @@ cmdsrv_main(argc, argv, serverName_arg, serverStr)
* Build a ":drop" command to send to a Vim server.
*/
static char_u *
build_drop_cmd(filec, filev, tabs, sendReply)
int filec;
char **filev;
int tabs; /* Use ":tab drop" instead of ":drop". */
int sendReply;
build_drop_cmd(
int filec,
char **filev,
int tabs, /* Use ":tab drop" instead of ":drop". */
int sendReply)
{
garray_T ga;
int i;
@@ -4044,9 +4026,7 @@ build_drop_cmd(filec, filev, tabs, sendReply)
* Return the name in allocated memory. This doesn't include a serial number.
*/
static char_u *
serverMakeName(arg, cmd)
char_u *arg;
char *cmd;
serverMakeName(char_u *arg, char *cmd)
{
char_u *p;
@@ -4068,8 +4048,7 @@ serverMakeName(arg, cmd)
* Replace termcodes such as <CR> and insert as key presses if there is room.
*/
void
server_to_input_buf(str)
char_u *str;
server_to_input_buf(char_u *str)
{
char_u *ptr = NULL;
char_u *cpo_save = p_cpo;
@@ -4110,8 +4089,7 @@ server_to_input_buf(str)
* Evaluate an expression that the client sent to a string.
*/
char_u *
eval_client_expr_to_string(expr)
char_u *expr;
eval_client_expr_to_string(char_u *expr)
{
char_u *res;
int save_dbl = debug_break_level;
@@ -4151,10 +4129,10 @@ eval_client_expr_to_string(expr)
* "*tofree" is set to the result when it needs to be freed later.
*/
char_u *
serverConvert(client_enc, data, tofree)
char_u *client_enc UNUSED;
char_u *data;
char_u **tofree;
serverConvert(
char_u *client_enc UNUSED,
char_u *data,
char_u **tofree)
{
char_u *res = data;