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 / 6.2.081 < prev    next >
Encoding:
Internet Message Format  |  2003-10-13  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.081
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.081
  11. Problem:    Problem when using a long multibyte string for the statusline.
  12. Solution:   Use the right pointer to get the cell size. (Taro Muraoka)
  13. Files:        src/buffer.c
  14.  
  15.  
  16. *** ../vim-6.2.080/src/buffer.c    Sun Aug  3 12:24:50 2003
  17. --- src/buffer.c    Sun Sep  7 23:17:03 2003
  18. ***************
  19. *** 3485,3491 ****
  20.   #ifdef FEAT_MBYTE
  21.               if (has_mbyte)
  22.               {
  23. !             l -= ptr2cells(s);
  24.               t += (*mb_ptr2len_check)(t);
  25.               }
  26.               else
  27. --- 3514,3520 ----
  28.   #ifdef FEAT_MBYTE
  29.               if (has_mbyte)
  30.               {
  31. !             l -= ptr2cells(t);
  32.               t += (*mb_ptr2len_check)(t);
  33.               }
  34.               else
  35. *** ../vim-6.2.080/src/version.c    Wed Sep 10 22:51:29 2003
  36. --- src/version.c    Thu Sep 11 21:07:08 2003
  37. ***************
  38. *** 632,633 ****
  39. --- 632,635 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     81,
  43.   /**/
  44.  
  45. -- 
  46. Kisses may last for as much as, but no more than, five minutes.
  47.         [real standing law in Iowa, United States of America]
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  51. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  52.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  53.