From: Bram Moolenaar Date: Wed, 14 Dec 2011 14:23:59 +0000 (+0100) Subject: updated for version 7.3.376 X-Git-Tag: v7.3.376 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2787ab91b0f588b4cb19ee32c9beb6fa7ebb4b1d;p=thirdparty%2Fvim.git updated for version 7.3.376 Problem: Win32: Toolbar repainting does not work when the mouse pointer hovers over a button. Solution: Call DefWindowProc() when not hanlding an event. (Sergiu Dotenco) --- diff --git a/src/gui_w32.c b/src/gui_w32.c index 4a34cb4f2d..c36f73d33e 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1101,7 +1101,7 @@ _WndProc( return MyWindowProc(hwnd, uMsg, wParam, lParam); } - return 1; + return DefWindowProc(hwnd, uMsg, wParam, lParam); } /* diff --git a/src/version.c b/src/version.c index e1dd495186..258a29f64d 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 376, /**/ 375, /**/