diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
commit | d99df423c559d85c17779b3685426c489554908c (patch) | |
tree | 13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/ex_cmds2.c | |
parent | baaa7e9ec7398a813e21285c272fa99792642077 (diff) | |
download | vim-d99df423c559d85c17779b3685426c489554908c.zip |
patch 7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 2c9209662..67ec84b6a 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -2999,7 +2999,7 @@ source_runtime(name, all) do_in_runtimepath(name, all, callback, cookie) char_u *name; int all; - void (*callback)__ARGS((char_u *fname, void *ck)); + void (*callback)(char_u *fname, void *ck); void *cookie; { char_u *rtp; |