comparison src/proto/vim9compile.pro @ 25939:377a7686a52f v8.2.3503

patch 8.2.3503: Vim9: using g:pat:cmd is confusing Commit: https://github.com/vim/vim/commit/7b829268921e8fc1c63c34d245063c1c4e7d21af Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 13 15:04:34 2021 +0100 patch 8.2.3503: Vim9: using g:pat:cmd is confusing Problem: Vim9: using g:pat:cmd is confusing. Solution: Do not recognize g: as the :global command. Also for s:pat:repl. (closes #8982)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Oct 2021 16:15:04 +0200
parents 483b40e87ca5
children 4b23672d1f0e
comparison
equal deleted inserted replaced
25938:26aa27d37199 25939:377a7686a52f
15 void error_white_both(char_u *op, int len); 15 void error_white_both(char_u *op, int len);
16 void fill_exarg_from_cctx(exarg_T *eap, cctx_T *cctx); 16 void fill_exarg_from_cctx(exarg_T *eap, cctx_T *cctx);
17 int assignment_len(char_u *p, int *heredoc); 17 int assignment_len(char_u *p, int *heredoc);
18 void vim9_declare_error(char_u *name); 18 void vim9_declare_error(char_u *name);
19 int check_vim9_unlet(char_u *name); 19 int check_vim9_unlet(char_u *name);
20 int check_global_and_subst(char_u *cmd, char_u *arg);
20 int compile_def_function(ufunc_T *ufunc, int check_return_type, compiletype_T compile_type, cctx_T *outer_cctx); 21 int compile_def_function(ufunc_T *ufunc, int check_return_type, compiletype_T compile_type, cctx_T *outer_cctx);
21 void set_function_type(ufunc_T *ufunc); 22 void set_function_type(ufunc_T *ufunc);
22 void delete_instr(isn_T *isn); 23 void delete_instr(isn_T *isn);
23 void unlink_def_function(ufunc_T *ufunc); 24 void unlink_def_function(ufunc_T *ufunc);
24 void link_def_function(ufunc_T *ufunc); 25 void link_def_function(ufunc_T *ufunc);