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.1.310 < prev    next >
Encoding:
Internet Message Format  |  2003-01-28  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.310
  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.1.310 (depends on 6.1.307)
  11. Problem:    All double-byte characters are displayed as "XX".
  12. Solution:   Use ">= 32" instead of "< 32".  (Yasuhiro Matsumoto)
  13. Files:        src/screen.c
  14.  
  15.  
  16. *** ../vim61.309/src/screen.c    Tue Jan 28 21:51:20 2003
  17. --- src/screen.c    Wed Jan 29 10:07:28 2003
  18. ***************
  19. *** 3266,3272 ****
  20.               /* We assume a second byte below 32 is illegal.
  21.                * Hopefully this is OK for all double-byte encodings!
  22.                */
  23. !             if (ptr[1] < 32)
  24.                   mb_c = (c << 8) + ptr[1];
  25.               else
  26.               {
  27. --- 3267,3273 ----
  28.               /* We assume a second byte below 32 is illegal.
  29.                * Hopefully this is OK for all double-byte encodings!
  30.                */
  31. !             if (ptr[1] >= 32)
  32.                   mb_c = (c << 8) + ptr[1];
  33.               else
  34.               {
  35. *** ../vim61.309/src/version.c    Tue Jan 28 22:28:19 2003
  36. --- src/version.c    Wed Jan 29 10:07:34 2003
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     310,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 73. You give your dog used motherboards instead of bones
  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 at Amazon -- http://ICCF.nl/click1.html ///
  53.