comparison src/proto/diff.pro @ 17986:5c8906f653f5 v8.1.1989

patch 8.1.1989: the evalfunc.c file is still too big Commit: https://github.com/vim/vim/commit/af7645d3733fdd3cd2df03ec7b653601d26969ef Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 5 22:33:28 2019 +0200 patch 8.1.1989: the evalfunc.c file is still too big Problem: The evalfunc.c file is still too big. Solution: Move f_pathshorten() to filepath.c. Move f_cscope_connection() to if_cscope.c. Move diff_ functions to diff.c. Move timer_ functions to ex_cmds2.c. move callback functions to evalvars.c.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Sep 2019 22:45:04 +0200
parents ba63a184e6b6
children 41484f342f80
comparison
equal deleted inserted replaced
17985:9b43688b26bf 17986:5c8906f653f5
25 void ex_diffgetput(exarg_T *eap); 25 void ex_diffgetput(exarg_T *eap);
26 int diff_mode_buf(buf_T *buf); 26 int diff_mode_buf(buf_T *buf);
27 int diff_move_to(int dir, long count); 27 int diff_move_to(int dir, long count);
28 linenr_T diff_get_corresponding_line(buf_T *buf1, linenr_T lnum1); 28 linenr_T diff_get_corresponding_line(buf_T *buf1, linenr_T lnum1);
29 linenr_T diff_lnum_win(linenr_T lnum, win_T *wp); 29 linenr_T diff_lnum_win(linenr_T lnum, win_T *wp);
30 void f_diff_filler(typval_T *argvars, typval_T *rettv);
31 void f_diff_hlID(typval_T *argvars, typval_T *rettv);
30 /* vim: set ft=c : */ 32 /* vim: set ft=c : */