comparison src/proto/vim9compile.pro @ 21385:54a304e4dc57 v8.2.1243

patch 8.2.1243: Vim9: cannot have a comment line halfway a list Commit: https://github.com/vim/vim/commit/75783bd84e42e8431e4a62dfbabc9be1a1e56901 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 19 14:41:58 2020 +0200 patch 8.2.1243: Vim9: cannot have a comment line halfway a list Problem: Vim9: cannot have a comment or empty line halfway a list at script level. Solution: Skip more than one line if needed.
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jul 2020 14:45:03 +0200
parents f25d007f90ac
children 66386ca8a69f
comparison
equal deleted inserted replaced
21384:0c7e050ddcf4 21385:54a304e4dc57
9 type_T *parse_type(char_u **arg, garray_T *type_gap); 9 type_T *parse_type(char_u **arg, garray_T *type_gap);
10 char *vartype_name(vartype_T type); 10 char *vartype_name(vartype_T type);
11 char *type_name(type_T *type, char **tofree); 11 char *type_name(type_T *type, char **tofree);
12 int get_script_item_idx(int sid, char_u *name, int check_writable); 12 int get_script_item_idx(int sid, char_u *name, int check_writable);
13 imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx); 13 imported_T *find_imported(char_u *name, size_t len, cctx_T *cctx);
14 int vim9_comment_start(char_u *p);
14 char_u *peek_next_line_from_context(cctx_T *cctx); 15 char_u *peek_next_line_from_context(cctx_T *cctx);
15 char_u *next_line_from_context(cctx_T *cctx, int skip_comment); 16 char_u *next_line_from_context(cctx_T *cctx, int skip_comment);
16 char_u *to_name_const_end(char_u *arg); 17 char_u *to_name_const_end(char_u *arg);
17 int assignment_len(char_u *p, int *heredoc); 18 int assignment_len(char_u *p, int *heredoc);
18 void vim9_declare_error(char_u *name); 19 void vim9_declare_error(char_u *name);