home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.567 < prev    next >
Encoding:
Internet Message Format  |  2015-01-07  |  1.5 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.567
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.567
  11. Problem:    Non-ascii vertical separater characters are always redrawn.
  12. Solution:   Compare only the one byte that's stored. (Thiago Padilha)
  13. Files:        src/screen.c
  14.  
  15.  
  16. *** ../vim-7.4.566/src/screen.c    2015-01-07 13:31:48.890661692 +0100
  17. --- src/screen.c    2015-01-07 18:44:50.021472601 +0100
  18. ***************
  19. *** 6062,6068 ****
  20.           int c;
  21.   
  22.           c = fillchar_vsep(&hl);
  23. !         if (ScreenLines[off_to] != c
  24.   # ifdef FEAT_MBYTE
  25.               || (enc_utf8 && (int)ScreenLinesUC[off_to]
  26.                                  != (c >= 0x80 ? c : 0))
  27. --- 6062,6068 ----
  28.           int c;
  29.   
  30.           c = fillchar_vsep(&hl);
  31. !         if (ScreenLines[off_to] != (schar_T)c
  32.   # ifdef FEAT_MBYTE
  33.               || (enc_utf8 && (int)ScreenLinesUC[off_to]
  34.                                  != (c >= 0x80 ? c : 0))
  35. *** ../vim-7.4.566/src/version.c    2015-01-07 16:52:53.506792420 +0100
  36. --- src/version.c    2015-01-07 18:43:16.906545056 +0100
  37. ***************
  38. *** 743,744 ****
  39. --- 743,746 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     567,
  43.   /**/
  44.  
  45. -- 
  46. Keyboard not found.  Think ENTER to continue.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.