# HG changeset patch # User Bram Moolenaar # Date 1589576404 -7200 # Node ID 86333cdb8cf810d1a1c5378a4fc614a441d09ef0 # Parent 5ab2bc28e113df11b37e91e8c27eb1be28f195ce patch 8.2.0763: GUI test fails without the terminal feature Commit: https://github.com/vim/vim/commit/4457e1d98f78152311495b1aff6169383d330a75 Author: Bram Moolenaar Date: Fri May 15 22:46:44 2020 +0200 patch 8.2.0763: GUI test fails without the terminal feature Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084) diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim --- a/src/testdir/test_gui.vim +++ b/src/testdir/test_gui.vim @@ -841,6 +841,7 @@ endfunc " Test for "!" option in 'guioptions'. Use a terminal for running external " commands func Test_gui_run_cmd_in_terminal() + CheckFeature terminal let save_guioptions = &guioptions set guioptions+=! if has('win32') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 763, +/**/ 762, /**/ 761,