comparison src/proto/misc1.pro @ 19283:9dc843109c97 v8.2.0200

patch 8.2.0200: Vim9 script commands not sufficiently tested Commit: https://github.com/vim/vim/commit/b283a8a6802ef8a46b17cb439f9514840c03698f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 2 22:24:04 2020 +0100 patch 8.2.0200: Vim9 script commands not sufficiently tested Problem: Vim9 script commands not sufficiently tested. Solution: Add more tests. Fix storing global variable. Make script variables work.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Feb 2020 22:30:04 +0100
parents 18d7337b6837
children a961efb326e5
comparison
equal deleted inserted replaced
19282:0d513180baa1 19283:9dc843109c97
29 char_u *expand_env_save_opt(char_u *src, int one); 29 char_u *expand_env_save_opt(char_u *src, int one);
30 void expand_env(char_u *src, char_u *dst, int dstlen); 30 void expand_env(char_u *src, char_u *dst, int dstlen);
31 void expand_env_esc(char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr); 31 void expand_env_esc(char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr);
32 char_u *vim_getenv(char_u *name, int *mustfree); 32 char_u *vim_getenv(char_u *name, int *mustfree);
33 void vim_unsetenv(char_u *var); 33 void vim_unsetenv(char_u *var);
34 void vim_setenv_ext(char_u *name, char_u *val);
34 void vim_setenv(char_u *name, char_u *val); 35 void vim_setenv(char_u *name, char_u *val);
35 char_u *get_env_name(expand_T *xp, int idx); 36 char_u *get_env_name(expand_T *xp, int idx);
36 char_u *get_users(expand_T *xp, int idx); 37 char_u *get_users(expand_T *xp, int idx);
37 int match_user(char_u *name); 38 int match_user(char_u *name);
38 char_u *concat_str(char_u *str1, char_u *str2); 39 char_u *concat_str(char_u *str1, char_u *str2);