summaryrefslogtreecommitdiffstats
path: root/src/proto/digraph.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-19 13:22:12 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-19 13:22:12 +0100
commitef26954a35207c3f17d6ed35d9a40c918d974892 (patch)
tree331d57d214bf4d20bbfa6b8f4d0155a4c5b1e9b6 /src/proto/digraph.pro
parent99dbe291f55022bd5166c9c3c7967b8693cd9d1b (diff)
patch 7.4.1133v7.4.1133
Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
Diffstat (limited to 'src/proto/digraph.pro')
-rw-r--r--src/proto/digraph.pro14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/proto/digraph.pro b/src/proto/digraph.pro
index 5573b8c36d..a8d2ae903c 100644
--- a/src/proto/digraph.pro
+++ b/src/proto/digraph.pro
@@ -1,9 +1,9 @@
/* digraph.c */
-int do_digraph __ARGS((int c));
-int get_digraph __ARGS((int cmdline));
-int getdigraph __ARGS((int char1, int char2, int meta_char));
-void putdigraph __ARGS((char_u *str));
-void listdigraphs __ARGS((void));
-char_u *keymap_init __ARGS((void));
-void ex_loadkeymap __ARGS((exarg_T *eap));
+int do_digraph(int c);
+int get_digraph(int cmdline);
+int getdigraph(int char1, int char2, int meta_char);
+void putdigraph(char_u *str);
+void listdigraphs(void);
+char_u *keymap_init(void);
+void ex_loadkeymap(exarg_T *eap);
/* vim: set ft=c : */