mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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:
@@ -2378,7 +2378,7 @@ ex_loadkeymap(exarg_T *eap)
|
||||
*/
|
||||
for (;;)
|
||||
{
|
||||
line = eap->getline(0, eap->cookie, 0);
|
||||
line = eap->getline(0, eap->cookie, 0, TRUE);
|
||||
if (line == NULL)
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user