From e96a2498f9a2d3e93ac07431f6d4afd77f30afdf Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 25 Jun 2019 04:12:16 +0200 Subject: 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 #4580) --- src/autocmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/autocmd.c') diff --git a/src/autocmd.c b/src/autocmd.c index 1abd410d9..be8e72d2e 100644 --- a/src/autocmd.c +++ b/src/autocmd.c @@ -2329,7 +2329,7 @@ auto_next_pat( * Returns allocated string, or NULL for end of autocommands. */ char_u * -getnextac(int c UNUSED, void *cookie, int indent UNUSED) +getnextac(int c UNUSED, void *cookie, int indent UNUSED, int do_concat UNUSED) { AutoPatCmd *acp = (AutoPatCmd *)cookie; char_u *retval; -- cgit v1.2.1