summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-25 04:12:16 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-25 04:12:16 +0200
commite96a2498f9a2d3e93ac07431f6d4afd77f30afdf (patch)
tree9395a92f2de9f49abe63c7fc9f5fe26b1396fb47 /src/ex_cmds.c
parent2b044ffb5ada77e6fa89779d6532ea9fae3fe029 (diff)
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/ex_cmds.c')
-rw-r--r--src/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index d1068c7cff..78fe17823e 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4540,7 +4540,7 @@ ex_append(exarg_T *eap)
#ifdef FEAT_EVAL
eap->cstack->cs_looplevel > 0 ? -1 :
#endif
- NUL, eap->cookie, indent);
+ NUL, eap->cookie, indent, TRUE);
State = save_State;
}
lines_left = Rows - 1;
@@ -5388,7 +5388,7 @@ do_sub(exarg_T *eap)
for ( ; i <= (long)ec; ++i)
msg_putchar('^');
- resp = getexmodeline('?', NULL, 0);
+ resp = getexmodeline('?', NULL, 0, TRUE);
if (resp != NULL)
{
typed = *resp;