From: Bram Moolenaar Date: Sat, 23 Mar 2019 12:30:22 +0000 (+0100) Subject: patch 8.1.1042: the paste test doesn't work properly in the Windows console X-Git-Tag: v8.1.1042 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=832615be12bdb5d60b2850e2025592dc67217f37;p=vim patch 8.1.1042: the paste test doesn't work properly in the Windows console Problem: The paste test doesn't work properly in the Windows console. Solution: Disable the test. --- diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim index 65f300cef..f3664f6a6 100644 --- a/src/testdir/test_paste.vim +++ b/src/testdir/test_paste.vim @@ -1,7 +1,7 @@ " Tests for bracketed paste and other forms of pasting. -" Bracketed paste only works with "xterm". Not in GUI. -if has('gui_running') +" Bracketed paste only works with "xterm". Not in GUI or Windows console. +if has('gui_running') || has('win32') finish endif set term=xterm diff --git a/src/version.c b/src/version.c index ce32f2b58..4dc0df6df 100644 --- a/src/version.c +++ b/src/version.c @@ -775,6 +775,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1042, /**/ 1041, /**/