summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-02-03 12:23:24 +0100
committerBram Moolenaar <Bram@vim.org>2010-02-03 12:23:24 +0100
commit4d526ad35aae3e637aa3fd9f5042196120e456a2 (patch)
treedd3d25689cdc9b12769a904f7bc9c37481c12a83 /src
parentd21d9a6c6141be8b9c35f2ffede29cc0a6a91de8 (diff)
updated for version 7.2.352v7.2.352
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
Diffstat (limited to 'src')
-rw-r--r--src/gui_w48.c10
-rw-r--r--src/version.c2
2 files changed, 10 insertions, 2 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c
index 123584bb14..40af60fa9f 100644
--- a/src/gui_w48.c
+++ b/src/gui_w48.c
@@ -1084,9 +1084,15 @@ _TextAreaWndProc(
case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
return TRUE;
#endif
+ /* Workaround for the problem that MyWindowProc() returns FALSE on 64
+ * bit windows when cross-compiled using Mingw libraries. (Andy
+ * Kittner) */
+ case WM_NCCREATE:
+ MyWindowProc(hwnd, uMsg, wParam, lParam);
+ return TRUE;
- default:
- return MyWindowProc(hwnd, uMsg, wParam, lParam);
+ default:
+ return MyWindowProc(hwnd, uMsg, wParam, lParam);
}
}
diff --git a/src/version.c b/src/version.c
index a2bc904d15..a823253bcd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 352,
+/**/
351,
/**/
350,