From 4f888757257795969f2ab2e6fc3544a5bef3cdea Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 2 Oct 2018 15:06:40 +0200 Subject: [PATCH] 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. --- src/testdir/test_options.vim | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim index 851da1ed16..d3ac21cd89 100644 --- 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 index f4a463759e..c5153eca7b 100644 --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 446, /**/ 445, /**/ -- 2.47.2