changeset 10686:23ada4caa13b v8.0.0233

patch 8.0.0233: paste test fails in the GUI commit https://github.com/vim/vim/commit/bff6ad133195145f810645c0bde7a2a1fdfc37b8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 24 19:18:13 2017 +0100 patch 8.0.0233: paste test fails in the GUI Problem: The paste test fails if the GUI is being used. Solution: Skip the test in the GUI.
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Jan 2017 19:30:04 +0100
parents 170854b686f5
children 594fa10064a3
files src/testdir/test_paste.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_paste.vim
+++ b/src/testdir/test_paste.vim
@@ -1,6 +1,9 @@
 " Tests for bracketed paste.
 
-" Bracketed paste only works with "xterm".
+" Bracketed paste only works with "xterm".  Not in GUI.
+if has('gui_running')
+  finish
+endif
 set term=xterm
 
 func Test_paste_normal_mode()
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    233,
+/**/
     232,
 /**/
     231,