Blame SOURCES/7.4.035

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.035
22c937
Fcc: outbox
22c937
From: Bram Moolenaar <Bram@moolenaar.net>
22c937
Mime-Version: 1.0
22c937
Content-Type: text/plain; charset=UTF-8
22c937
Content-Transfer-Encoding: 8bit
22c937
------------
22c937
22c937
Patch 7.4.035
22c937
Problem:    MS-Windows: The mouse pointer flickers when going from command
22c937
	    line mode to Normal mode.
22c937
Solution:   Check for WM_NCMOUSEMOVE. (Ken Takata)
22c937
Files:	    src/gui_w48.c
22c937
22c937
22c937
*** ../vim-7.4.034/src/gui_w48.c	2013-08-10 13:36:45.000000000 +0200
22c937
--- src/gui_w48.c	2013-09-22 15:41:56.000000000 +0200
22c937
***************
22c937
*** 1008,1014 ****
22c937
      static LPARAM last_lParam = 0L;
22c937
  
22c937
      /* We sometimes get a mousemove when the mouse didn't move... */
22c937
!     if (uMsg == WM_MOUSEMOVE)
22c937
      {
22c937
  	if (lParam == last_lParam)
22c937
  	    return;
22c937
--- 1008,1014 ----
22c937
      static LPARAM last_lParam = 0L;
22c937
  
22c937
      /* We sometimes get a mousemove when the mouse didn't move... */
22c937
!     if (uMsg == WM_MOUSEMOVE || uMsg == WM_NCMOUSEMOVE)
22c937
      {
22c937
  	if (lParam == last_lParam)
22c937
  	    return;
22c937
*** ../vim-7.4.034/src/version.c	2013-09-22 15:23:38.000000000 +0200
22c937
--- src/version.c	2013-09-22 15:41:29.000000000 +0200
22c937
***************
22c937
*** 740,741 ****
22c937
--- 740,743 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     35,
22c937
  /**/
22c937
22c937
-- 
22c937
hundred-and-one symptoms of being an internet addict:
22c937
251. You've never seen your closest friends who usually live WAY too far away.
22c937
22c937
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
22c937
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
22c937
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
22c937
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///