changeset 16074:fa133cd14f87 v8.1.1042

patch 8.1.1042: the paste test doesn't work properly in the Windows console commit https://github.com/vim/vim/commit/832615be12bdb5d60b2850e2025592dc67217f37 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 23 13:30:22 2019 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 Mar 2019 13:45:05 +0100
parents 9617861cbbd2
children 5ca428f99af9
files src/testdir/test_paste.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/src/version.c
+++ b/src/version.c
@@ -776,6 +776,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1042,
+/**/
     1041,
 /**/
     1040,