|
Karsten Hopp |
b6aa03 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
b6aa03 |
Subject: Patch 7.3.376
|
|
Karsten Hopp |
b6aa03 |
Fcc: outbox
|
|
Karsten Hopp |
b6aa03 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
b6aa03 |
Mime-Version: 1.0
|
|
Karsten Hopp |
b6aa03 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
b6aa03 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
b6aa03 |
------------
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
Patch 7.3.376
|
|
Karsten Hopp |
b6aa03 |
Problem: Win32: Toolbar repainting does not work when the mouse pointer
|
|
Karsten Hopp |
b6aa03 |
hovers over a button.
|
|
Karsten Hopp |
b6aa03 |
Solution: Call DefWindowProc() when not handling an event. (Sergiu Dotenco)
|
|
Karsten Hopp |
b6aa03 |
Files: src/gui_w32.c
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
*** ../vim-7.3.375/src/gui_w32.c 2011-08-10 17:07:56.000000000 +0200
|
|
Karsten Hopp |
b6aa03 |
--- src/gui_w32.c 2011-12-14 15:14:48.000000000 +0100
|
|
Karsten Hopp |
b6aa03 |
***************
|
|
Karsten Hopp |
b6aa03 |
*** 1101,1107 ****
|
|
Karsten Hopp |
b6aa03 |
return MyWindowProc(hwnd, uMsg, wParam, lParam);
|
|
Karsten Hopp |
b6aa03 |
}
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
! return 1;
|
|
Karsten Hopp |
b6aa03 |
}
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
/*
|
|
Karsten Hopp |
b6aa03 |
--- 1101,1107 ----
|
|
Karsten Hopp |
b6aa03 |
return MyWindowProc(hwnd, uMsg, wParam, lParam);
|
|
Karsten Hopp |
b6aa03 |
}
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
! return DefWindowProc(hwnd, uMsg, wParam, lParam);
|
|
Karsten Hopp |
b6aa03 |
}
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
/*
|
|
Karsten Hopp |
b6aa03 |
*** ../vim-7.3.375/src/version.c 2011-12-14 15:07:11.000000000 +0100
|
|
Karsten Hopp |
b6aa03 |
--- src/version.c 2011-12-14 15:23:10.000000000 +0100
|
|
Karsten Hopp |
b6aa03 |
***************
|
|
Karsten Hopp |
b6aa03 |
*** 716,717 ****
|
|
Karsten Hopp |
b6aa03 |
--- 716,719 ----
|
|
Karsten Hopp |
b6aa03 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
b6aa03 |
+ /**/
|
|
Karsten Hopp |
b6aa03 |
+ 376,
|
|
Karsten Hopp |
b6aa03 |
/**/
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
--
|
|
Karsten Hopp |
b6aa03 |
GALAHAD hurries to the door and pushes through it. As he leaves the room
|
|
Karsten Hopp |
b6aa03 |
we CUT TO the reverse to show that he is now in a room full of bathing
|
|
Karsten Hopp |
b6aa03 |
and romping GIRLIES, all innocent, wide-eyed and beautiful. They smile
|
|
Karsten Hopp |
b6aa03 |
enchantingly at him as he tries to keep walking without being diverted by
|
|
Karsten Hopp |
b6aa03 |
the lovely sights assaulting his eyeballs.
|
|
Karsten Hopp |
b6aa03 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
b6aa03 |
|
|
Karsten Hopp |
b6aa03 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
b6aa03 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
b6aa03 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
b6aa03 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|