summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2015-01-22 22:41:56 +0100
committerBram Moolenaar <bram@vim.org>2015-01-22 22:41:56 +0100
commitdbf3b05d1b0ed65fcc16fc5ea30791a5e367ed88 (patch)
tree677e9ce4e9d19cecca8c0f5202b5dff166e50622
parentb4bd775816a737631e950f64ec8d0d98c56a0451 (diff)
downloadvim-dbf3b05d1b0ed65fcc16fc5ea30791a5e367ed88.tar.gz
updated for version 7.4.591v7.4.591v7-4-591
Problem: test_listlbr_utf8 fails when the conceal feature is not available. Solution: Check for the conceal feature. (Kazunobu Kuriyama)
-rw-r--r--src/testdir/test_listlbr_utf8.in2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_listlbr_utf8.in b/src/testdir/test_listlbr_utf8.in
index b3d05dfa..bb6350dd 100644
--- a/src/testdir/test_listlbr_utf8.in
+++ b/src/testdir/test_listlbr_utf8.in
@@ -2,7 +2,7 @@ Test for linebreak and list option in utf-8 mode
STARTTEST
:so small.vim
-:if !exists("+linebreak") | e! test.ok | w! test.out | qa! | endif
+:if !exists("+linebreak") || !has("conceal") | e! test.ok | w! test.out | qa! | endif
:so mbyte.vim
:if &enc !=? 'utf-8'|:e! test.ok|:w! test.out|qa!|endif
:10new|:vsp|:vert resize 20
diff --git a/src/version.c b/src/version.c
index bef9b19a..33f8a972 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 591,
+/**/
590,
/**/
589,