comparison src/proto/vim9script.pro @ 21146:465d6e40e79c v8.2.1124

patch 8.2.1124: Vim9: no line break allowed in :import command Commit: https://github.com/vim/vim/commit/1c991144c502ade477e1a32fdfd0f78b6299fdc7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 4 13:15:31 2020 +0200 patch 8.2.1124: Vim9: no line break allowed in :import command Problem: Vim9: no line break allowed in :import command. Solution: Skip over line breaks.
author Bram Moolenaar <Bram@vim.org>
date Sat, 04 Jul 2020 13:30:04 +0200
parents 96bf2b304932
children c7b2ce90c2de
comparison
equal deleted inserted replaced
21145:9761ed6ea124 21146:465d6e40e79c
2 int in_vim9script(void); 2 int in_vim9script(void);
3 void ex_vim9script(exarg_T *eap); 3 void ex_vim9script(exarg_T *eap);
4 void ex_export(exarg_T *eap); 4 void ex_export(exarg_T *eap);
5 void free_imports(int sid); 5 void free_imports(int sid);
6 void ex_import(exarg_T *eap); 6 void ex_import(exarg_T *eap);
7 int find_exported(int sid, char_u **argp, int *name_len, ufunc_T **ufunc, type_T **type); 7 int find_exported(int sid, char_u *name, ufunc_T **ufunc, type_T **type);
8 char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, void *cctx); 8 char_u *handle_import(char_u *arg_start, garray_T *gap, int import_sid, evalarg_T *evalarg, void *cctx);
9 char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg); 9 char_u *vim9_declare_scriptvar(exarg_T *eap, char_u *arg);
10 int check_script_var_type(typval_T *dest, typval_T *value, char_u *name); 10 int check_script_var_type(typval_T *dest, typval_T *value, char_u *name);
11 /* vim: set ft=c : */ 11 /* vim: set ft=c : */