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/digraph.c b/src/digraph.c index a26d10c..5b56095 100644 --- a/src/digraph.c +++ b/src/digraph.c
@@ -2378,7 +2378,7 @@ */ for (;;) { - line = eap->getline(0, eap->cookie, 0); + line = eap->getline(0, eap->cookie, 0, TRUE); if (line == NULL) break;