comparison src/proto/diff.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 df92c2b2a179
children d0b74b18e4b5
comparison
equal deleted inserted replaced
7667:201b9c7e3df7 7668:21b0a39d13ed
1 /* diff.c */ 1 /* diff.c */
2 void diff_buf_delete __ARGS((buf_T *buf)); 2 void diff_buf_delete(buf_T *buf);
3 void diff_buf_adjust __ARGS((win_T *win)); 3 void diff_buf_adjust(win_T *win);
4 void diff_buf_add __ARGS((buf_T *buf)); 4 void diff_buf_add(buf_T *buf);
5 void diff_invalidate __ARGS((buf_T *buf)); 5 void diff_invalidate(buf_T *buf);
6 void diff_mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after)); 6 void diff_mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
7 void ex_diffupdate __ARGS((exarg_T *eap)); 7 void ex_diffupdate(exarg_T *eap);
8 void ex_diffpatch __ARGS((exarg_T *eap)); 8 void ex_diffpatch(exarg_T *eap);
9 void ex_diffsplit __ARGS((exarg_T *eap)); 9 void ex_diffsplit(exarg_T *eap);
10 void ex_diffthis __ARGS((exarg_T *eap)); 10 void ex_diffthis(exarg_T *eap);
11 void diff_win_options __ARGS((win_T *wp, int addbuf)); 11 void diff_win_options(win_T *wp, int addbuf);
12 void ex_diffoff __ARGS((exarg_T *eap)); 12 void ex_diffoff(exarg_T *eap);
13 void diff_clear __ARGS((tabpage_T *tp)); 13 void diff_clear(tabpage_T *tp);
14 int diff_check __ARGS((win_T *wp, linenr_T lnum)); 14 int diff_check(win_T *wp, linenr_T lnum);
15 int diff_check_fill __ARGS((win_T *wp, linenr_T lnum)); 15 int diff_check_fill(win_T *wp, linenr_T lnum);
16 void diff_set_topline __ARGS((win_T *fromwin, win_T *towin)); 16 void diff_set_topline(win_T *fromwin, win_T *towin);
17 int diffopt_changed __ARGS((void)); 17 int diffopt_changed(void);
18 int diffopt_horizontal __ARGS((void)); 18 int diffopt_horizontal(void);
19 int diff_find_change __ARGS((win_T *wp, linenr_T lnum, int *startp, int *endp)); 19 int diff_find_change(win_T *wp, linenr_T lnum, int *startp, int *endp);
20 int diff_infold __ARGS((win_T *wp, linenr_T lnum)); 20 int diff_infold(win_T *wp, linenr_T lnum);
21 void nv_diffgetput __ARGS((int put, long count)); 21 void nv_diffgetput(int put, long count);
22 void ex_diffgetput __ARGS((exarg_T *eap)); 22 void ex_diffgetput(exarg_T *eap);
23 int diff_mode_buf __ARGS((buf_T *buf)); 23 int diff_mode_buf(buf_T *buf);
24 int diff_move_to __ARGS((int dir, long count)); 24 int diff_move_to(int dir, long count);
25 linenr_T diff_get_corresponding_line __ARGS((buf_T *buf1, linenr_T lnum1, buf_T *buf2, linenr_T lnum3)); 25 linenr_T diff_get_corresponding_line(buf_T *buf1, linenr_T lnum1, buf_T *buf2, linenr_T lnum3);
26 linenr_T diff_lnum_win __ARGS((linenr_T lnum, win_T *wp)); 26 linenr_T diff_lnum_win(linenr_T lnum, win_T *wp);
27 /* vim: set ft=c : */ 27 /* vim: set ft=c : */