diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-20 15:02:42 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-20 15:02:42 +0200 |
commit | 66250c932e8a0e3c43e7c7c7b1dbede040b9c508 (patch) | |
tree | 485324d99b96692841c3f44ad0f76b4c67be4d49 /src/proto/userfunc.pro | |
parent | 93ad14710bdf77591f927a2b244bba6a8cbc7706 (diff) | |
download | vim-git-66250c932e8a0e3c43e7c7c7b1dbede040b9c508.tar.gz |
patch 8.2.1491: Vim9: crash when compiling heredoc lines start with commentv8.2.1491
Problem: Vim9: crash when compiling heredoc lines start with comment.
Solution: Skip over NULL pointers. Do not remove comment and empty lines
when fetching function lines. (closes #6743)
Diffstat (limited to 'src/proto/userfunc.pro')
-rw-r--r-- | src/proto/userfunc.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/userfunc.pro b/src/proto/userfunc.pro index 2c4cbd5d3..e6acc1886 100644 --- a/src/proto/userfunc.pro +++ b/src/proto/userfunc.pro @@ -46,7 +46,7 @@ void ex_call(exarg_T *eap); int do_return(exarg_T *eap, int reanimate, int is_cmd, void *rettv); void discard_pending_return(void *rettv); char_u *get_return_cmd(void *rettv); -char_u *get_func_line(int c, void *cookie, int indent, int do_concat); +char_u *get_func_line(int c, void *cookie, int indent, getline_opt_T options); int func_has_ended(void *cookie); int func_has_abort(void *cookie); dict_T *make_partial(dict_T *selfdict_in, typval_T *rettv); |