comparison src/proto/autocmd.pro @ 17178:40c4cb095d53 v8.1.1588

patch 8.1.1588: in :let-heredoc line continuation is recognized commit https://github.com/vim/vim/commit/e96a2498f9a2d3e93ac07431f6d4afd77f30afdf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 25 04:12:16 2019 +0200 patch 8.1.1588: in :let-heredoc line continuation is recognized Problem: In :let-heredoc line continuation is recognized. Solution: Do not consume line continuation. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/4580)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jun 2019 04:15:08 +0200
parents 0f65f2808470
children 0f7ae8010787
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
28 int has_textyankpost(void); 28 int has_textyankpost(void);
29 int has_completechanged(void); 29 int has_completechanged(void);
30 void block_autocmds(void); 30 void block_autocmds(void);
31 void unblock_autocmds(void); 31 void unblock_autocmds(void);
32 int is_autocmd_blocked(void); 32 int is_autocmd_blocked(void);
33 char_u *getnextac(int c, void *cookie, int indent); 33 char_u *getnextac(int c, void *cookie, int indent, int do_concat);
34 int has_autocmd(event_T event, char_u *sfname, buf_T *buf); 34 int has_autocmd(event_T event, char_u *sfname, buf_T *buf);
35 char_u *get_augroup_name(expand_T *xp, int idx); 35 char_u *get_augroup_name(expand_T *xp, int idx);
36 char_u *set_context_in_autocmd(expand_T *xp, char_u *arg, int doautocmd); 36 char_u *set_context_in_autocmd(expand_T *xp, char_u *arg, int doautocmd);
37 char_u *get_event_name(expand_T *xp, int idx); 37 char_u *get_event_name(expand_T *xp, int idx);
38 int autocmd_supported(char_u *name); 38 int autocmd_supported(char_u *name);