mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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)
This commit is contained in:
@@ -1307,7 +1307,7 @@ heredoc_get(exarg_T *eap, char_u *cmd)
|
||||
int mi = 0;
|
||||
int ti = 0;
|
||||
|
||||
theline = eap->getline(NUL, eap->cookie, 0);
|
||||
theline = eap->getline(NUL, eap->cookie, 0, FALSE);
|
||||
if (theline == NULL)
|
||||
{
|
||||
semsg(_("E990: Missing end marker '%s'"), marker);
|
||||
|
Reference in New Issue
Block a user