|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.591
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.591 (after 7.4.587)
|
|
|
3ef2ca |
Problem: test_listlbr_utf8 fails when the conceal feature is not available.
|
|
|
3ef2ca |
Solution: Check for the conceal feature. (Kazunobu Kuriyama)
|
|
|
3ef2ca |
Files: src/testdir/test_listlbr_utf8.in
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.590/src/testdir/test_listlbr_utf8.in 2015-01-20 19:01:32.380444290 +0100
|
|
|
3ef2ca |
--- src/testdir/test_listlbr_utf8.in 2015-01-22 22:37:43.523361845 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 2,8 ****
|
|
|
3ef2ca |
|
|
|
3ef2ca |
STARTTEST
|
|
|
3ef2ca |
:so small.vim
|
|
|
3ef2ca |
! :if !exists("+linebreak") | e! test.ok | w! test.out | qa! | endif
|
|
|
3ef2ca |
:so mbyte.vim
|
|
|
3ef2ca |
:if &enc !=? 'utf-8'|:e! test.ok|:w! test.out|qa!|endif
|
|
|
3ef2ca |
:10new|:vsp|:vert resize 20
|
|
|
3ef2ca |
--- 2,8 ----
|
|
|
3ef2ca |
|
|
|
3ef2ca |
STARTTEST
|
|
|
3ef2ca |
:so small.vim
|
|
|
3ef2ca |
! :if !exists("+linebreak") || !has("conceal") | e! test.ok | w! test.out | qa! | endif
|
|
|
3ef2ca |
:so mbyte.vim
|
|
|
3ef2ca |
:if &enc !=? 'utf-8'|:e! test.ok|:w! test.out|qa!|endif
|
|
|
3ef2ca |
:10new|:vsp|:vert resize 20
|
|
|
3ef2ca |
*** ../vim-7.4.590/src/version.c 2015-01-22 22:40:16.345651420 +0100
|
|
|
3ef2ca |
--- src/version.c 2015-01-22 22:41:26.464867079 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 743,744 ****
|
|
|
3ef2ca |
--- 743,746 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 591,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
107. When using your phone you forget that you don't have to use your
|
|
|
3ef2ca |
keyboard.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|