]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.063
- license change to GPL
[packages/vim.git] / 6.3.063
CommitLineData
a6f905ff
AG
1To: vim-dev@vim.org
2Subject: Patch 6.3.063
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.3.063
11Problem: When a CursorHold autocommand changes to another window
12 (temporarily) 'mousefocus' stops working.
13Solution: Call gui_mouse_correct() after triggering CursorHold.
14Files: src/gui.c
15
16
17*** ../vim-6.3.050/src/gui.c Sun Sep 5 20:48:38 2004
18--- src/gui.c Fri Mar 11 19:11:00 2005
19***************
20*** 2626,2631 ****
21--- 2626,2635 ----
22 update_screen(VALID);
23 showruler(FALSE);
24 setcursor();
25+ /* In case the commands moved the focus to another window
26+ * (temporarily). */
27+ if (need_mouse_correct)
28+ gui_mouse_correct();
29
30 once_already = 1;
31 retval = 0;
32*** ../vim-6.3.050/src/version.c Sun Feb 13 20:46:05 2005
33--- src/version.c Fri Mar 11 19:12:29 2005
34***************
35*** 643,644 ****
36--- 643,646 ----
37 { /* Add new patch number below this line */
38+ /**/
39+ 63,
40 /**/
41
42--
43Trees moving back and forth is what makes the wind blow.
44
45 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
46/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
47\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
48 \\\ Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html ///
This page took 0.03255 seconds and 4 git commands to generate.