# HG changeset patch # User Christian Brabandt # Date 1538486106 -7200 # Node ID 7f669f95356e43c3f748c739176f8a9647a68d6e # Parent 55aa5975227a7b015eb6717d84dd8844e9e0486a patch 8.1.0446: options test fails in the GUI commit https://github.com/vim/vim/commit/4f888757257795969f2ab2e6fc3544a5bef3cdea Author: Bram Moolenaar Date: Tue Oct 2 15:06:40 2018 +0200 patch 8.1.0446: options test fails in the GUI Problem: Options test fails in the GUI. Solution: Don't try changing 'term' in the GUI. diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -272,6 +272,9 @@ endfunc " Must be executed before other tests that set 'term'. func Test_000_term_option_verbose() + if has('gui_running') + return + endif let verb_cm = execute('verbose set t_cm') call assert_notmatch('Last set from', verb_cm) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -793,6 +793,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 446, +/**/ 445, /**/ 444,