0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

patch 7.4.2203

Problem:    Test fails with normal features.
Solution:   Check is signs are supported.
This commit is contained in:
Bram Moolenaar 2016-08-12 19:17:13 +02:00
parent b338483152
commit ebcccad573
2 changed files with 8 additions and 4 deletions

View File

@ -40,9 +40,11 @@ function Test_path_keep_commas()
endfunction endfunction
func Test_signcolumn() func Test_signcolumn()
call assert_equal("auto", &signcolumn) if has('signs')
set signcolumn=yes call assert_equal("auto", &signcolumn)
set signcolumn=no set signcolumn=yes
call assert_fails('set signcolumn=nope') set signcolumn=no
call assert_fails('set signcolumn=nope')
endif
endfunc endfunc

View File

@ -763,6 +763,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
2203,
/**/ /**/
2202, 2202,
/**/ /**/