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.002 < prev    next >
Encoding:
Internet Message Format  |  2003-10-13  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.002
  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.002
  11. Problem:    When compiled with the +multi_byte feature but without +eval,
  12.         displaying UTF-8 characters may cause a crash. (Karsten Hopp)
  13. Solution:   Also set the default for 'ambiwidth' when compiled without the
  14.         +eval feature.
  15. Files:        src/option.c
  16.  
  17.  
  18. *** ../vim-6.2.001/src/option.c    Thu May 29 17:13:38 2003
  19. --- src/option.c    Mon Jun  2 20:18:48 2003
  20. ***************
  21. *** 349,355 ****
  22.   #endif
  23.                   {(char_u *)FALSE, (char_u *)0L}},
  24.       {"ambiwidth",  "ambw",  P_STRING|P_VI_DEF|P_RCLR,
  25. ! #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
  26.                   (char_u *)&p_ambw, PV_NONE,
  27.                   {(char_u *)"single", (char_u *)0L}
  28.   #else
  29. --- 349,355 ----
  30.   #endif
  31.                   {(char_u *)FALSE, (char_u *)0L}},
  32.       {"ambiwidth",  "ambw",  P_STRING|P_VI_DEF|P_RCLR,
  33. ! #if defined(FEAT_MBYTE)
  34.                   (char_u *)&p_ambw, PV_NONE,
  35.                   {(char_u *)"single", (char_u *)0L}
  36.   #else
  37. *** ../vim-6.2.001/src/version.c    Mon Jun  2 21:31:14 2003
  38. --- src/version.c    Mon Jun  2 22:01:01 2003
  39. ***************
  40. *** 632,633 ****
  41. --- 632,635 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     2,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 57. You begin to wonder how on earth your service provider is allowed to call
  50.     200 hours per month "unlimited."
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  54. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  55.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  56.