1
0
forked from aniani/vim

patch 7.4.1133

Problem:    Generated function prototypes still have __ARGS().
Solution:   Generate function prototypes without __ARGS().
This commit is contained in:
Bram Moolenaar
2016-01-19 13:22:12 +01:00
parent 99dbe291f5
commit ef26954a35
82 changed files with 3087 additions and 3084 deletions

View File

@@ -1,9 +1,9 @@
/* auto/if_perl.c */
int perl_enabled __ARGS((int verbose));
void perl_end __ARGS((void));
void msg_split __ARGS((char_u *s, int attr));
void perl_win_free __ARGS((win_T *wp));
void perl_buf_free __ARGS((buf_T *bp));
void ex_perl __ARGS((exarg_T *eap));
void ex_perldo __ARGS((exarg_T *eap));
void do_perleval __ARGS((char_u *str, typval_T *rettv));
int perl_enabled(int verbose);
void perl_end(void);
void msg_split(char_u *s, int attr);
void perl_win_free(win_T *wp);
void perl_buf_free(buf_T *bp);
void ex_perl(exarg_T *eap);
void do_perleval(char_u *str, typval_T *rettv);
void ex_perldo(exarg_T *eap);