summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-10-02 15:06:40 +0200
committerBram Moolenaar <Bram@vim.org>2018-10-02 15:06:40 +0200
commit4f888757257795969f2ab2e6fc3544a5bef3cdea (patch)
treef647458ed4f89be17bf2637a11da655ae585df5a
parent35bc7d6c52f516b60d683bf9f0f57266d86e25b9 (diff)
downloadvim-git-4f888757257795969f2ab2e6fc3544a5bef3cdea.tar.gz
patch 8.1.0446: options test fails in the GUIv8.1.0446
Problem: Options test fails in the GUI. Solution: Don't try changing 'term' in the GUI.
-rw-r--r--src/testdir/test_options.vim3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim
index 851da1ed1..d3ac21cd8 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 f4a463759..c5153eca7 100644
--- 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,