comparison src/proto/eval.pro @ 17458:cfdef48743ed v8.1.1727

patch 8.1.1727: code for viminfo support is spread out commit https://github.com/vim/vim/commit/defa067c54874dd987121dd7252c62755e0aebfa Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 21 19:25:37 2019 +0200 patch 8.1.1727: code for viminfo support is spread out Problem: Code for viminfo support is spread out. Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4686)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jul 2019 19:30:06 +0200
parents cb008de2a6ec
children e00d12c085a5
comparison
equal deleted inserted replaced
17457:3a368ff28a0b 17458:cfdef48743ed
124 win_T *find_tabwin(typval_T *wvp, typval_T *tvp, tabpage_T **ptp); 124 win_T *find_tabwin(typval_T *wvp, typval_T *tvp, tabpage_T **ptp);
125 void getwinvar(typval_T *argvars, typval_T *rettv, int off); 125 void getwinvar(typval_T *argvars, typval_T *rettv, int off);
126 void setwinvar(typval_T *argvars, typval_T *rettv, int off); 126 void setwinvar(typval_T *argvars, typval_T *rettv, int off);
127 char_u *autoload_name(char_u *name); 127 char_u *autoload_name(char_u *name);
128 int script_autoload(char_u *name, int reload); 128 int script_autoload(char_u *name, int reload);
129 int read_viminfo_varlist(vir_T *virp, int writing); 129 var_flavour_T var_flavour(char_u *varname);
130 void write_viminfo_varlist(FILE *fp);
131 int store_session_globals(FILE *fd); 130 int store_session_globals(FILE *fd);
132 void last_set_msg(sctx_T script_ctx); 131 void last_set_msg(sctx_T script_ctx);
133 void reset_v_option_vars(void); 132 void reset_v_option_vars(void);
134 void assert_error(garray_T *gap); 133 void assert_error(garray_T *gap);
135 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic); 134 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic);