|
Karsten Hopp |
1cbd39 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1cbd39 |
Subject: Patch 7.4.567
|
|
Karsten Hopp |
1cbd39 |
Fcc: outbox
|
|
Karsten Hopp |
1cbd39 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1cbd39 |
Mime-Version: 1.0
|
|
Karsten Hopp |
1cbd39 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1cbd39 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1cbd39 |
------------
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
Patch 7.4.567
|
|
Karsten Hopp |
1cbd39 |
Problem: Non-ascii vertical separater characters are always redrawn.
|
|
Karsten Hopp |
1cbd39 |
Solution: Compare only the one byte that's stored. (Thiago Padilha)
|
|
Karsten Hopp |
1cbd39 |
Files: src/screen.c
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
*** ../vim-7.4.566/src/screen.c 2015-01-07 13:31:48.890661692 +0100
|
|
Karsten Hopp |
1cbd39 |
--- src/screen.c 2015-01-07 18:44:50.021472601 +0100
|
|
Karsten Hopp |
1cbd39 |
***************
|
|
Karsten Hopp |
1cbd39 |
*** 6062,6068 ****
|
|
Karsten Hopp |
1cbd39 |
int c;
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
c = fillchar_vsep(&hl;;
|
|
Karsten Hopp |
1cbd39 |
! if (ScreenLines[off_to] != c
|
|
Karsten Hopp |
1cbd39 |
# ifdef FEAT_MBYTE
|
|
Karsten Hopp |
1cbd39 |
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
|
|
Karsten Hopp |
1cbd39 |
!= (c >= 0x80 ? c : 0))
|
|
Karsten Hopp |
1cbd39 |
--- 6062,6068 ----
|
|
Karsten Hopp |
1cbd39 |
int c;
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
c = fillchar_vsep(&hl;;
|
|
Karsten Hopp |
1cbd39 |
! if (ScreenLines[off_to] != (schar_T)c
|
|
Karsten Hopp |
1cbd39 |
# ifdef FEAT_MBYTE
|
|
Karsten Hopp |
1cbd39 |
|| (enc_utf8 && (int)ScreenLinesUC[off_to]
|
|
Karsten Hopp |
1cbd39 |
!= (c >= 0x80 ? c : 0))
|
|
Karsten Hopp |
1cbd39 |
*** ../vim-7.4.566/src/version.c 2015-01-07 16:52:53.506792420 +0100
|
|
Karsten Hopp |
1cbd39 |
--- src/version.c 2015-01-07 18:43:16.906545056 +0100
|
|
Karsten Hopp |
1cbd39 |
***************
|
|
Karsten Hopp |
1cbd39 |
*** 743,744 ****
|
|
Karsten Hopp |
1cbd39 |
--- 743,746 ----
|
|
Karsten Hopp |
1cbd39 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1cbd39 |
+ /**/
|
|
Karsten Hopp |
1cbd39 |
+ 567,
|
|
Karsten Hopp |
1cbd39 |
/**/
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
--
|
|
Karsten Hopp |
1cbd39 |
Keyboard not found. Think ENTER to continue.
|
|
Karsten Hopp |
1cbd39 |
|
|
Karsten Hopp |
1cbd39 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1cbd39 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1cbd39 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1cbd39 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|