From 6ab0953fefe31fef91e40752a675ceb60fc2fe03 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 1 May 2020 14:10:13 +0200 Subject: patch 8.2.0672: heredoc in scripts does not accept lower case marker Problem: Heredoc in scripts does not accept lower case marker. Solution: Allow lower case only in non-Vim scripts. (Ken Takata, closes #6019) --- src/testdir/test_python3.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/testdir/test_python3.vim') diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim index 224484611..b4a4a4aa7 100644 --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -349,7 +349,10 @@ s+='B' python3 << trim s+='D' . - call assert_equal('ABCD', pyxeval('s')) + python3 << trim eof + s+='E' + eof + call assert_equal('ABCDE', pyxeval('s')) endfunc " vim: shiftwidth=2 sts=2 expandtab -- cgit v1.2.1