]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.467
- add patches 7.3.619-743
[packages/vim.git] / 7.3.467
CommitLineData
03d4279c
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.467
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.467
11Problem: Cursor positioned wrong at the command line when regaining focus
12 and using some input method.
13Solution: Do not position the cursor in command line mode.
14Files: src/mbyte.c
15
16
17*** ../vim-7.3.466/src/mbyte.c 2011-12-08 15:09:46.000000000 +0100
18--- src/mbyte.c 2012-03-07 19:36:44.000000000 +0100
19***************
20*** 4504,4510 ****
21 vgetc_busy = TRUE;
22 showmode();
23 vgetc_busy = old_vgetc_busy;
24! setcursor();
25 out_flush();
26 }
27
28--- 4504,4511 ----
29 vgetc_busy = TRUE;
30 showmode();
31 vgetc_busy = old_vgetc_busy;
32! if ((State & NORMAL) || (State & INSERT))
33! setcursor();
34 out_flush();
35 }
36
37*** ../vim-7.3.466/src/version.c 2012-03-07 19:30:32.000000000 +0100
38--- src/version.c 2012-03-07 19:38:22.000000000 +0100
39***************
40*** 716,717 ****
41--- 716,719 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 467,
45 /**/
46
47--
48hundred-and-one symptoms of being an internet addict:
49154. You fondle your mouse.
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ an exciting new programming language -- http://www.Zimbu.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.088106 seconds and 4 git commands to generate.