Blame SOURCES/7.4.567

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