comparison src/eval.c @ 17178:40c4cb095d53 v8.1.1588

patch 8.1.1588: in :let-heredoc line continuation is recognized commit https://github.com/vim/vim/commit/e96a2498f9a2d3e93ac07431f6d4afd77f30afdf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 25 04:12:16 2019 +0200 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 https://github.com/vim/vim/issues/4580)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jun 2019 04:15:08 +0200
parents 6990c1160ea5
children 306a51f4c731
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
1305 for (;;) 1305 for (;;)
1306 { 1306 {
1307 int mi = 0; 1307 int mi = 0;
1308 int ti = 0; 1308 int ti = 0;
1309 1309
1310 theline = eap->getline(NUL, eap->cookie, 0); 1310 theline = eap->getline(NUL, eap->cookie, 0, FALSE);
1311 if (theline == NULL) 1311 if (theline == NULL)
1312 { 1312 {
1313 semsg(_("E990: Missing end marker '%s'"), marker); 1313 semsg(_("E990: Missing end marker '%s'"), marker);
1314 break; 1314 break;
1315 } 1315 }