changeset 14869:7f669f95356e v8.1.0446

patch 8.1.0446: options test fails in the GUI commit https://github.com/vim/vim/commit/4f888757257795969f2ab2e6fc3544a5bef3cdea Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 02 Oct 2018 15:15:06 +0200
parents 55aa5975227a
children b81f630a720a
files src/testdir/test_options.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)
 
--- 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,