summaryrefslogtreecommitdiffstats
path: root/src/proto/if_lua.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-29 23:20:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-29 23:20:40 +0100
commitd99df423c559d85c17779b3685426c489554908c (patch)
tree13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/proto/if_lua.pro
parentbaaa7e9ec7398a813e21285c272fa99792642077 (diff)
patch 7.4.1200v7.4.1200
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/proto/if_lua.pro')
-rw-r--r--src/proto/if_lua.pro18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/proto/if_lua.pro b/src/proto/if_lua.pro
index 10395d5777..c33678e13d 100644
--- a/src/proto/if_lua.pro
+++ b/src/proto/if_lua.pro
@@ -1,11 +1,11 @@
/* if_lua.c */
-int lua_enabled __ARGS((int verbose));
-void lua_end __ARGS((void));
-void ex_lua __ARGS((exarg_T *eap));
-void ex_luado __ARGS((exarg_T *eap));
-void ex_luafile __ARGS((exarg_T *eap));
-void lua_buffer_free __ARGS((buf_T *buf));
-void lua_window_free __ARGS((win_T *win));
-void do_luaeval __ARGS((char_u *str, typval_T *arg, typval_T *rettv));
-int set_ref_in_lua __ARGS((int copyID));
+int lua_enabled(int verbose);
+void lua_end(void);
+void ex_lua(exarg_T *eap);
+void ex_luado(exarg_T *eap);
+void ex_luafile(exarg_T *eap);
+void lua_buffer_free(buf_T *o);
+void lua_window_free(win_T *o);
+void do_luaeval(char_u *str, typval_T *arg, typval_T *rettv);
+int set_ref_in_lua(int copyID);
/* vim: set ft=c : */