]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.352
- new
[packages/vim.git] / 7.2.352
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.352
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.352
11 Problem:    Win64: Vim doesn't work when cross-compiled with MingW libraries.
12 Solution:   Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
13 Files:      src/gui_w48.c
14
15
16 *** ../vim-7.2.351/src/gui_w48.c        2009-01-28 21:22:20.000000000 +0100
17 --- src/gui_w48.c       2010-02-03 12:07:11.000000000 +0100
18 ***************
19 *** 1084,1092 ****
20         case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
21             return TRUE;
22   #endif
23   
24 !     default:
25 !       return MyWindowProc(hwnd, uMsg, wParam, lParam);
26       }
27   }
28   
29 --- 1084,1098 ----
30         case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
31             return TRUE;
32   #endif
33 +       /* Workaround for the problem that MyWindowProc() returns FALSE on 64
34 +        * bit windows when cross-compiled using Mingw libraries. (Andy
35 +        * Kittner) */
36 +       case WM_NCCREATE:
37 +           MyWindowProc(hwnd, uMsg, wParam, lParam);
38 +           return TRUE;
39   
40 !       default:
41 !           return MyWindowProc(hwnd, uMsg, wParam, lParam);
42       }
43   }
44   
45 *** ../vim-7.2.351/src/version.c        2010-01-28 22:58:10.000000000 +0100
46 --- src/version.c       2010-02-03 12:16:30.000000000 +0100
47 ***************
48 *** 683,684 ****
49 --- 683,686 ----
50   {   /* Add new patch number below this line */
51 + /**/
52 +     352,
53   /**/
54
55 -- 
56 hundred-and-one symptoms of being an internet addict:
57 185. You order fast food over the Internet
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
61 \\\        download, build and distribute -- http://www.A-A-P.org        ///
62  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.025712 seconds and 3 git commands to generate.