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.199 < prev    next >
Encoding:
Internet Message Format  |  2002-09-26  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.199
  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.199
  11. Problem:    'guifontwide' doesn't work on Win32.
  12. Solution:   Output each wide character separately. (Michael Geddes)
  13. Files:        src/gui.c
  14.  
  15.  
  16. *** ../vim61.198/src/gui.c    Mon Sep 16 22:00:32 2002
  17. --- src/gui.c    Fri Sep 27 20:24:04 2002
  18. ***************
  19. *** 1951,1957 ****
  20.   
  21.           /* print the string so far if it's the last character or there is
  22.            * a composing character. */
  23. !         if (i + cl >= len || (comping && i > start)
  24.   #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
  25.               || (cn > 1
  26.   # ifdef FEAT_XFONTSET
  27. --- 1954,1960 ----
  28.   
  29.           /* print the string so far if it's the last character or there is
  30.            * a composing character. */
  31. !         if (i + cl >= len || (comping && i > start) || dowide
  32.   #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
  33.               || (cn > 1
  34.   # ifdef FEAT_XFONTSET
  35. *** ../vim61.198/src/version.c    Fri Sep 27 19:30:44 2002
  36. --- src/version.c    Fri Sep 27 20:41:32 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     199,
  43.   /**/
  44.  
  45. -- 
  46. Proof techniques #2: Proof by Oddity.
  47.     SAMPLE: To prove that horses have an infinite number of legs.
  48. (1) Horses have an even number of legs.
  49. (2) They have two legs in back and fore legs in front.
  50. (3) This makes a total of six legs, which certainly is an odd number of
  51.     legs for a horse.
  52. (4) But the only number that is both odd and even is infinity.
  53. (5) Therefore, horses must have an infinite number of legs.
  54.  
  55.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  56. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  57. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  58.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  59.