comparison src/proto/evalvars.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 46f95606b9ec
children e93cab5d0f0f
comparison
equal deleted inserted replaced
17985:9b43688b26bf 17986:5c8906f653f5
75 void f_getbufvar(typval_T *argvars, typval_T *rettv); 75 void f_getbufvar(typval_T *argvars, typval_T *rettv);
76 void f_settabvar(typval_T *argvars, typval_T *rettv); 76 void f_settabvar(typval_T *argvars, typval_T *rettv);
77 void f_settabwinvar(typval_T *argvars, typval_T *rettv); 77 void f_settabwinvar(typval_T *argvars, typval_T *rettv);
78 void f_setwinvar(typval_T *argvars, typval_T *rettv); 78 void f_setwinvar(typval_T *argvars, typval_T *rettv);
79 void f_setbufvar(typval_T *argvars, typval_T *rettv); 79 void f_setbufvar(typval_T *argvars, typval_T *rettv);
80 callback_T get_callback(typval_T *arg);
81 void put_callback(callback_T *cb, typval_T *tv);
82 void set_callback(callback_T *dest, callback_T *src);
83 void free_callback(callback_T *callback);
80 /* vim: set ft=c : */ 84 /* vim: set ft=c : */