home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.1.452 (extra)
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- Mime-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 6.1.452 (extra, after 6.1.446)
- Problem: Win32: IME support doesn't work for MSVC.
- Solution: Use _MSC_VER instead of __MSVC. (Alejandro Lopez-Valencia)
- Files: src/gui_w32.c
-
-
- *** ../vim61.451/src/gui_w32.c Sun Apr 6 15:17:31 2003
- --- src/gui_w32.c Tue Apr 8 18:01:34 2003
- ***************
- *** 1202,1208 ****
- * Multi-byte handling, originally by Sung-Hoon Baek.
- * First static functions (no prototypes generated).
- */
- ! #ifdef __MSVC
- # include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
- #endif
- #include <imm.h>
- --- 1202,1208 ----
- * Multi-byte handling, originally by Sung-Hoon Baek.
- * First static functions (no prototypes generated).
- */
- ! #ifdef _MSC_VER
- # include <ime.h> /* Apparently not needed for Cygwin, MingW or Borland. */
- #endif
- #include <imm.h>
- *** ../vim61.451/src/version.c Sun Apr 6 22:24:35 2003
- --- src/version.c Tue Apr 8 18:02:29 2003
- ***************
- *** 613,614 ****
- --- 613,616 ----
- { /* Add new patch number below this line */
- + /**/
- + 452,
- /**/
-
- --
- Every exit is an entrance into something else.
-
- /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
- /// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
- \\\ Project leader for A-A-P -- http://www.A-A-P.org ///
- \\\ Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
-