commit | e96a2498f9a2d3e93ac07431f6d4afd77f30afdf | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jun 25 04:12:16 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jun 25 04:12:16 2019 +0200 |
tree | 9395a92f2de9f49abe63c7fc9f5fe26b1396fb47 | |
parent | 2b044ffb5ada77e6fa89779d6532ea9fae3fe029 [diff] [blame] |
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)
diff --git a/src/ops.c b/src/ops.c index 826a03c..a0b91f9 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -788,7 +788,7 @@ { char_u *new_line; - new_line = getcmdline('=', 0L, 0); + new_line = getcmdline('=', 0L, 0, TRUE); if (new_line == NULL) return NUL; if (*new_line == NUL) /* use previous line */