Patch 7.4.567
Problem: Non-ascii vertical separater characters are always redrawn.
Solution: Compare only the one byte that's stored. (Thiago Padilha)
Files: src/screen.c
*** ../vim-7.4.566/src/screen.c 2015-01-07 13:31:48.890661692 +0100
--- src/screen.c 2015-01-07 18:44:50.021472601 +0100
***************
*** 6062,6068 ****
int c;
c = fillchar_vsep(&hl);
! if (ScreenLines[off_to] != c
# ifdef FEAT_MBYTE
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
!= (c >= 0x80 ? c : 0))
--- 6062,6068 ----
int c;
c = fillchar_vsep(&hl);
! if (ScreenLines[off_to] != (schar_T)c
# ifdef FEAT_MBYTE
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
!= (c >= 0x80 ? c : 0))
*** ../vim-7.4.566/src/version.c 2015-01-07 16:52:53.506792420 +0100
--- src/version.c 2015-01-07 18:43:16.906545056 +0100
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 567,
/**/
--
Keyboard not found. Think ENTER to continue.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.