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.452 < prev    next >
Encoding:
Internet Message Format  |  2003-04-07  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.452 (extra)
  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.452 (extra, after 6.1.446)
  11. Problem:    Win32: IME support doesn't work for MSVC.
  12. Solution:   Use _MSC_VER instead of __MSVC. (Alejandro Lopez-Valencia)
  13. Files:        src/gui_w32.c
  14.  
  15.  
  16. *** ../vim61.451/src/gui_w32.c    Sun Apr  6 15:17:31 2003
  17. --- src/gui_w32.c    Tue Apr  8 18:01:34 2003
  18. ***************
  19. *** 1202,1208 ****
  20.    * Multi-byte handling, originally by Sung-Hoon Baek.
  21.    * First static functions (no prototypes generated).
  22.    */
  23. ! #ifdef __MSVC
  24.   # include <ime.h>   /* Apparently not needed for Cygwin, MingW or Borland. */
  25.   #endif
  26.   #include <imm.h>
  27. --- 1202,1208 ----
  28.    * Multi-byte handling, originally by Sung-Hoon Baek.
  29.    * First static functions (no prototypes generated).
  30.    */
  31. ! #ifdef _MSC_VER
  32.   # include <ime.h>   /* Apparently not needed for Cygwin, MingW or Borland. */
  33.   #endif
  34.   #include <imm.h>
  35. *** ../vim61.451/src/version.c    Sun Apr  6 22:24:35 2003
  36. --- src/version.c    Tue Apr  8 18:02:29 2003
  37. ***************
  38. *** 613,614 ****
  39. --- 613,616 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     452,
  43.   /**/
  44.  
  45. -- 
  46. Every exit is an entrance into something else.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  50. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  51.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  52.