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.4 / 6.4.001 next >
Encoding:
Internet Message Format  |  2005-10-16  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.4.001 (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. Note: This only changes the code for Global IME, none of the 6.4
  11. executables are affected.
  12.  
  13.  
  14. Patch 6.4.001 (extra)
  15. Problem:    Win32: Can't compile the Global IME code.
  16. Solution:   Change "hwnd" to "hWnd". (Yongwei)
  17. Files:        src/glbl_ime.cpp
  18.  
  19.  
  20. *** ../vim-6.4.000/src/glbl_ime.cpp    Tue May 11 22:29:41 2004
  21. --- src/glbl_ime.cpp    Mon Oct 17 11:03:43 2005
  22. ***************
  23. *** 136,142 ****
  24.       {
  25.   #if defined(WIN3264) && defined(FEAT_MBYTE)
  26.       if (wide_WindowProc)
  27. !         lResult = DefWindowProcW(hwnd, Msg, wParam, lParam);
  28.       else
  29.   #endif
  30.           lResult = DefWindowProc(hWnd, Msg, wParam, lParam);
  31. --- 136,142 ----
  32.       {
  33.   #if defined(WIN3264) && defined(FEAT_MBYTE)
  34.       if (wide_WindowProc)
  35. !         lResult = DefWindowProcW(hWnd, Msg, wParam, lParam);
  36.       else
  37.   #endif
  38.           lResult = DefWindowProc(hWnd, Msg, wParam, lParam);
  39. *** ../vim-6.4.000/src/version.c    Sat Oct 15 13:23:40 2005
  40. --- src/version.c    Mon Oct 17 11:08:25 2005
  41. ***************
  42. *** 643,644 ****
  43. --- 643,646 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     1,
  47.   /**/
  48.  
  49. -- 
  50. Well, you come from nothing, you go back to nothing...  What have you
  51. lost?  Nothing!
  52.                 -- Monty Python: The life of Brian
  53.  
  54.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  55. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  56. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  57.  \\\     Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html   ///
  58.