comparison src/proto/mark.pro @ 7668:21b0a39d13ed v7.4.1133

commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 19 13:22:12 2016 +0100 patch 7.4.1133 Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jan 2016 13:30:06 +0100
parents 80b041b994d1
children 78712a2f687a
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* mark.c */ 1 /* mark.c */
2 int setmark __ARGS((int c)); 2 int setmark(int c);
3 int setmark_pos __ARGS((int c, pos_T *pos, int fnum)); 3 int setmark_pos(int c, pos_T *pos, int fnum);
4 void setpcmark __ARGS((void)); 4 void setpcmark(void);
5 void checkpcmark __ARGS((void)); 5 void checkpcmark(void);
6 pos_T *movemark __ARGS((int count)); 6 pos_T *movemark(int count);
7 pos_T *movechangelist __ARGS((int count)); 7 pos_T *movechangelist(int count);
8 pos_T *getmark_buf __ARGS((buf_T *buf, int c, int changefile)); 8 pos_T *getmark_buf(buf_T *buf, int c, int changefile);
9 pos_T *getmark __ARGS((int c, int changefile)); 9 pos_T *getmark(int c, int changefile);
10 pos_T *getmark_buf_fnum __ARGS((buf_T *buf, int c, int changefile, int *fnum)); 10 pos_T *getmark_buf_fnum(buf_T *buf, int c, int changefile, int *fnum);
11 pos_T *getnextmark __ARGS((pos_T *startpos, int dir, int begin_line)); 11 pos_T *getnextmark(pos_T *startpos, int dir, int begin_line);
12 void fmarks_check_names __ARGS((buf_T *buf)); 12 void fmarks_check_names(buf_T *buf);
13 int check_mark __ARGS((pos_T *pos)); 13 int check_mark(pos_T *pos);
14 void clrallmarks __ARGS((buf_T *buf)); 14 void clrallmarks(buf_T *buf);
15 char_u *fm_getname __ARGS((fmark_T *fmark, int lead_len)); 15 char_u *fm_getname(fmark_T *fmark, int lead_len);
16 void do_marks __ARGS((exarg_T *eap)); 16 void do_marks(exarg_T *eap);
17 void ex_delmarks __ARGS((exarg_T *eap)); 17 void ex_delmarks(exarg_T *eap);
18 void ex_jumps __ARGS((exarg_T *eap)); 18 void ex_jumps(exarg_T *eap);
19 void ex_changes __ARGS((exarg_T *eap)); 19 void ex_changes(exarg_T *eap);
20 void mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after)); 20 void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
21 void mark_col_adjust __ARGS((linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount)); 21 void mark_col_adjust(linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount);
22 void copy_jumplist __ARGS((win_T *from, win_T *to)); 22 void copy_jumplist(win_T *from, win_T *to);
23 void free_jumplist __ARGS((win_T *wp)); 23 void free_jumplist(win_T *wp);
24 void set_last_cursor __ARGS((win_T *win)); 24 void set_last_cursor(win_T *win);
25 void free_all_marks __ARGS((void)); 25 void free_all_marks(void);
26 int read_viminfo_filemark __ARGS((vir_T *virp, int force)); 26 int read_viminfo_filemark(vir_T *virp, int force);
27 void write_viminfo_filemarks __ARGS((FILE *fp)); 27 void write_viminfo_filemarks(FILE *fp);
28 int removable __ARGS((char_u *name)); 28 int removable(char_u *name);
29 int write_viminfo_marks __ARGS((FILE *fp_out)); 29 int write_viminfo_marks(FILE *fp_out);
30 void copy_viminfo_marks __ARGS((vir_T *virp, FILE *fp_out, int count, int eof, int flags)); 30 void copy_viminfo_marks(vir_T *virp, FILE *fp_out, int count, int eof, int flags);
31 /* vim: set ft=c : */ 31 /* vim: set ft=c : */