Skip to content

Commit bff6ad1

Browse files
committed
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.
1 parent 48c9f3b commit bff6ad1

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/testdir/test_paste.vim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
" Tests for bracketed paste.
22

3-
" Bracketed paste only works with "xterm".
3+
" Bracketed paste only works with "xterm". Not in GUI.
4+
if has('gui_running')
5+
finish
6+
endif
47
set term=xterm
58

69
func Test_paste_normal_mode()

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
233,
767769
/**/
768770
232,
769771
/**/

0 commit comments

Comments
 (0)