|
 |
3ef2ca |
To: vim_dev@googlegroups.com
|
|
 |
3ef2ca |
Subject: Patch 7.4.567
|
|
 |
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.567
|
|
 |
3ef2ca |
Problem: Non-ascii vertical separater characters are always redrawn.
|
|
 |
3ef2ca |
Solution: Compare only the one byte that's stored. (Thiago Padilha)
|
|
 |
3ef2ca |
Files: src/screen.c
|
|
 |
3ef2ca |
|
|
 |
3ef2ca |
|
|
 |
3ef2ca |
*** ../vim-7.4.566/src/screen.c 2015-01-07 13:31:48.890661692 +0100
|
|
 |
3ef2ca |
--- src/screen.c 2015-01-07 18:44:50.021472601 +0100
|
|
 |
3ef2ca |
***************
|
|
 |
3ef2ca |
*** 6062,6068 ****
|
|
 |
3ef2ca |
int c;
|
|
 |
3ef2ca |
|
|
 |
3ef2ca |
c = fillchar_vsep(&hl;;
|
|
 |
3ef2ca |
! if (ScreenLines[off_to] != c
|
|
 |
3ef2ca |
# ifdef FEAT_MBYTE
|
|
 |
3ef2ca |
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
|
|
 |
3ef2ca |
!= (c >= 0x80 ? c : 0))
|
|
 |
3ef2ca |
--- 6062,6068 ----
|
|
 |
3ef2ca |
int c;
|
|
 |
3ef2ca |
|
|
 |
3ef2ca |
c = fillchar_vsep(&hl;;
|
|
 |
3ef2ca |
! if (ScreenLines[off_to] != (schar_T)c
|
|
 |
3ef2ca |
# ifdef FEAT_MBYTE
|
|
 |
3ef2ca |
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
|
|
 |
3ef2ca |
!= (c >= 0x80 ? c : 0))
|
|
 |
3ef2ca |
*** ../vim-7.4.566/src/version.c 2015-01-07 16:52:53.506792420 +0100
|
|
 |
3ef2ca |
--- src/version.c 2015-01-07 18:43:16.906545056 +0100
|
|
 |
3ef2ca |
***************
|
|
 |
3ef2ca |
*** 743,744 ****
|
|
 |
3ef2ca |
--- 743,746 ----
|
|
 |
3ef2ca |
{ /* Add new patch number below this line */
|
|
 |
3ef2ca |
+ /**/
|
|
 |
3ef2ca |
+ 567,
|
|
 |
3ef2ca |
/**/
|
|
 |
3ef2ca |
|
|
 |
3ef2ca |
--
|
|
 |
3ef2ca |
Keyboard not found. Think ENTER to continue.
|
|
 |
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 ///
|