diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-25 04:12:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-25 04:12:16 +0200 |
commit | e96a2498f9a2d3e93ac07431f6d4afd77f30afdf (patch) | |
tree | 9395a92f2de9f49abe63c7fc9f5fe26b1396fb47 /src/proto/autocmd.pro | |
parent | 2b044ffb5ada77e6fa89779d6532ea9fae3fe029 (diff) | |
download | vim-git-e96a2498f9a2d3e93ac07431f6d4afd77f30afdf.tar.gz |
patch 8.1.1588: in :let-heredoc line continuation is recognizedv8.1.1588
Problem: In :let-heredoc line continuation is recognized.
Solution: Do not consume line continuation. (Ozaki Kiichi, closes #4580)
Diffstat (limited to 'src/proto/autocmd.pro')
-rw-r--r-- | src/proto/autocmd.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/autocmd.pro b/src/proto/autocmd.pro index a448dad04..009c0c4fd 100644 --- a/src/proto/autocmd.pro +++ b/src/proto/autocmd.pro @@ -30,7 +30,7 @@ int has_completechanged(void); void block_autocmds(void); void unblock_autocmds(void); int is_autocmd_blocked(void); -char_u *getnextac(int c, void *cookie, int indent); +char_u *getnextac(int c, void *cookie, int indent, int do_concat); int has_autocmd(event_T event, char_u *sfname, buf_T *buf); char_u *get_augroup_name(expand_T *xp, int idx); char_u *set_context_in_autocmd(expand_T *xp, char_u *arg, int doautocmd); |