patch 7.4.2203 v7.4.2203
authorBram Moolenaar <Bram@vim.org>
Fri, 12 Aug 2016 17:17:13 +0000 (19:17 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 12 Aug 2016 17:17:13 +0000 (19:17 +0200)
Problem:    Test fails with normal features.
Solution:   Check is signs are supported.

src/testdir/test_options.vim
src/version.c

index 3ddf5e6c255eb7703578109c68e70633e85763e5..21dd7fe4f8adbcdf9921de168a28d3c9b15f47cc 100644 (file)
@@ -40,9 +40,11 @@ function Test_path_keep_commas()
 endfunction
 
 func Test_signcolumn()
-  call assert_equal("auto", &signcolumn)
-  set signcolumn=yes
-  set signcolumn=no
-  call assert_fails('set signcolumn=nope')
+  if has('signs')
+    call assert_equal("auto", &signcolumn)
+    set signcolumn=yes
+    set signcolumn=no
+    call assert_fails('set signcolumn=nope')
+  endif
 endfunc
 
index e30f62764815999510028db7dfaa5a387ff5840e..3e34e0a00bf5ab72acbf5cb29a66255c6d394d1a 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2203,
 /**/
     2202,
 /**/