diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-02 22:24:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-02 22:24:04 +0100 |
commit | b283a8a6802ef8a46b17cb439f9514840c03698f (patch) | |
tree | f44c04ef936f4b0c366ab006f993bd076c6ea040 /src/proto/evalvars.pro | |
parent | 0f18b6d17baa7d33f209a3184726a162c2bb7ed8 (diff) | |
download | vim-git-b283a8a6802ef8a46b17cb439f9514840c03698f.tar.gz |
patch 8.2.0200: Vim9 script commands not sufficiently testedv8.2.0200
Problem: Vim9 script commands not sufficiently tested.
Solution: Add more tests. Fix storing global variable. Make script
variables work.
Diffstat (limited to 'src/proto/evalvars.pro')
-rw-r--r-- | src/proto/evalvars.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/evalvars.pro b/src/proto/evalvars.pro index 1d557f528..ff2f58ff9 100644 --- a/src/proto/evalvars.pro +++ b/src/proto/evalvars.pro @@ -33,6 +33,7 @@ void set_vim_var_type(int idx, vartype_T type); void set_vim_var_nr(int idx, varnumber_T val); char *get_vim_var_name(int idx); typval_T *get_vim_var_tv(int idx); +int set_vim_var_tv(int idx, typval_T *tv); varnumber_T get_vim_var_nr(int idx); char_u *get_vim_var_str(int idx); list_T *get_vim_var_list(int idx); |