]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.323
- up to 7.2.394; ruby1.9 support seems to be in new patches
[packages/vim.git] / 7.2.323
CommitLineData
6ac11130
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.323 (extra)
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.323 (extra)
11Problem: Balloon evaluation crashes on Win64.
12Solution: Change pointer types. (Sergey Khorev)
13Files: src/gui_w32.c
14
15
16*** ../vim-7.2.322/src/gui_w32.c 2009-01-28 21:22:20.000000000 +0100
17--- src/gui_w32.c 2009-12-24 16:06:41.000000000 +0100
18***************
19*** 212,223 ****
20 DWORD dwPlatformID;
21 } DLLVERSIONINFO;
22
23 typedef struct tagTOOLINFOA_NEW
24 {
25 UINT cbSize;
26 UINT uFlags;
27 HWND hwnd;
28! UINT uId;
29 RECT rect;
30 HINSTANCE hinst;
31 LPSTR lpszText;
32--- 212,225 ----
33 DWORD dwPlatformID;
34 } DLLVERSIONINFO;
35
36+ #include <poppack.h>
37+
38 typedef struct tagTOOLINFOA_NEW
39 {
40 UINT cbSize;
41 UINT uFlags;
42 HWND hwnd;
43! UINT_PTR uId;
44 RECT rect;
45 HINSTANCE hinst;
46 LPSTR lpszText;
47***************
48*** 227,241 ****
49 typedef struct tagNMTTDISPINFO_NEW
50 {
51 NMHDR hdr;
52! LPTSTR lpszText;
53 char szText[80];
54 HINSTANCE hinst;
55 UINT uFlags;
56 LPARAM lParam;
57 } NMTTDISPINFO_NEW;
58
59- #include <poppack.h>
60-
61 typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
62 #ifndef TTM_SETMAXTIPWIDTH
63 # define TTM_SETMAXTIPWIDTH (WM_USER+24)
64--- 229,241 ----
65 typedef struct tagNMTTDISPINFO_NEW
66 {
67 NMHDR hdr;
68! LPSTR lpszText;
69 char szText[80];
70 HINSTANCE hinst;
71 UINT uFlags;
72 LPARAM lParam;
73 } NMTTDISPINFO_NEW;
74
75 typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
76 #ifndef TTM_SETMAXTIPWIDTH
77 # define TTM_SETMAXTIPWIDTH (WM_USER+24)
78*** ../vim-7.2.322/src/version.c 2009-12-24 15:45:53.000000000 +0100
79--- src/version.c 2009-12-24 16:08:33.000000000 +0100
80***************
81*** 683,684 ****
82--- 683,686 ----
83 { /* Add new patch number below this line */
84+ /**/
85+ 323,
86 /**/
87
88--
89hundred-and-one symptoms of being an internet addict:
9046. Your wife makes a new rule: "The computer cannot come to bed."
91
92 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
93/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
94\\\ download, build and distribute -- http://www.A-A-P.org ///
95 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.032596 seconds and 4 git commands to generate.