jkunstle / rpms / vim

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