# HG changeset patch # User Christian Brabandt # Date 1485282604 -3600 # Node ID 23ada4caa13b11f213a1881fe51eb1c995f68f4d # Parent 170854b686f5e24ae6b02a1af1fb1563407bc8d3 patch 8.0.0233: paste test fails in the GUI commit https://github.com/vim/vim/commit/bff6ad133195145f810645c0bde7a2a1fdfc37b8 Author: Bram Moolenaar 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. diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim --- 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 --- 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,