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 / unreleased / patches / 6.0ax.008 < prev    next >
Encoding:
Internet Message Format  |  2001-09-20  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0ax.008
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 6.0ax.008
  8. Problem:    When 'encoding' is "utf-8", a ":vsplit" command or changing the
  9.         width of a vertically split window caused the vertical separator
  10.         to contain wrong characters.
  11. Solution:   Reset the Unicode character when drawing the separator character.
  12. Files:        src/screen.c
  13.  
  14.  
  15. *** ../vim60ax.7/src/screen.c    Fri Sep 21 10:21:46 2001
  16. --- src/screen.c    Fri Sep 21 16:31:07 2001
  17. ***************
  18. *** 4197,4202 ****
  19. --- 4197,4206 ----
  20.           {
  21.           ScreenLines[off_to] = c;
  22.           ScreenAttrs[off_to] = hl;
  23. + # ifdef FEAT_MBYTE
  24. +         if (enc_utf8)
  25. +             ScreenLinesUC[off_to] = 0;
  26. + # endif
  27.           screen_char(off_to, row, col + coloff);
  28.           }
  29.       }
  30. *** ../vim60ax.7/src/version.c    Fri Sep 21 11:59:19 2001
  31. --- src/version.c    Fri Sep 21 16:34:46 2001
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     8,
  38.   /**/
  39.  
  40. -- 
  41. It is illegal for a driver to be blindfolded while operating a vehicle.
  42.         [real standing law in Alabama, United States of America]
  43.  
  44.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  45. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  46.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  47.