From: Bram Moolenaar Date: Sun, 22 Sep 2013 13:43:37 +0000 (+0200) Subject: updated for version 7.4.035 X-Git-Tag: v7.4.035 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=268b55b5fbe68ca24020391c3c3055f71cff7277;p=thirdparty%2Fvim.git updated for version 7.4.035 Problem: MS-Windows: The mouse pointer flickers when going from command line mode to Normal mode. Solution: Check for WM_NCMOUSEMOVE. (Ken Takata) --- diff --git a/src/gui_w48.c b/src/gui_w48.c index 345d4da97a..d8ffc15292 100644 --- a/src/gui_w48.c +++ b/src/gui_w48.c @@ -1008,7 +1008,7 @@ HandleMouseHide(UINT uMsg, LPARAM lParam) static LPARAM last_lParam = 0L; /* We sometimes get a mousemove when the mouse didn't move... */ - if (uMsg == WM_MOUSEMOVE) + if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE) { if (lParam == last_lParam) return; diff --git a/src/version.c b/src/version.c index ab6c3c17c0..9c99f7b066 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 35, /**/ 34, /**/