From: Bram Moolenaar Date: Tue, 24 Jan 2017 18:18:13 +0000 (+0100) Subject: patch 8.0.0233: paste test fails in the GUI X-Git-Tag: v8.0.0233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bff6ad133195145f810645c0bde7a2a1fdfc37b8;p=vim 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. --- diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim index ffd2dfa32..dfe6bdc87 100644 --- 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() diff --git a/src/version.c b/src/version.c index c7ef2bec5..1b7824354 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 233, /**/ 232, /**/