Hi Bram and developers,
Patch attached.
Please check this.
--
Best regards,
Hirohito Higashi (h_east)
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/auto/configure b/src/auto/configure
index 1628b940e..5779dffcb 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -3373,9 +3373,7 @@ struct stat;
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
struct buf { int x; };
FILE * (*rcsopen) (struct buf *, struct stat *, int);
-static char *e (p, i)
- char **p;
- int i;
+static char *e (char **p, int i)
{
return p[i];
}
diff --git a/src/eval.c b/src/eval.c
index 4423419b1..ef25a3fc9 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -9387,8 +9387,7 @@ typval_compare(
}
char_u *
-typval_tostring(arg)
- typval_T *arg;
+typval_tostring(typval_T *arg)
{
char_u *tofree;
char_u numbuf[NUMBUFLEN];
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 7d0f33aaa..97242f682 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -2857,9 +2857,7 @@ f_delete(typval_T *argvars, typval_T *rettv)
* "deletebufline()" function
*/
static void
-f_deletebufline(argvars, rettv)
- typval_T *argvars;
- typval_T *rettv;
+f_deletebufline(typval_T *argvars, typval_T *rettv)
{
buf_T *buf;
linenr_T first, last;
@@ -10502,9 +10500,7 @@ f_serverlist(typval_T *argvars UNUSED, typval_T *rettv)
* "setbufline()" function
*/
static void
-f_setbufline(argvars, rettv)
- typval_T *argvars;
- typval_T *rettv;
+f_setbufline(typval_T *argvars, typval_T *rettv)
{
linenr_T lnum;
buf_T *buf;
diff --git a/src/list.c b/src/list.c
index 1dfaa210e..9a348a8a6 100644
--- a/src/list.c
+++ b/src/list.c
@@ -479,9 +479,7 @@ list_append_dict(list_T *list, dict_T *dict)
* Return FAIL when out of memory.
*/
int
-list_append_list(list1, list2)
- list_T *list1;
- list_T *list2;
+list_append_list(list_T *list1, list_T *list2)
{
listitem_T *li = listitem_alloc();