]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.029
- updated to 0.7.3
[packages/vim.git] / 7.0.029
CommitLineData
6f27073b
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.029
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 7.0.029
11Problem: getchar() may not position the cursor after a space.
12Solution: Position the cursor explicitly.
13Files: src/eval.c
14
15
16*** ../vim-7.0.028/src/eval.c Thu Jun 22 18:02:06 2006
17--- src/eval.c Thu Jun 22 21:00:00 2006
18***************
19*** 9792,9797 ****
20--- 9792,9800 ----
21 varnumber_T n;
22 int error = FALSE;
23
24+ /* Position the cursor. Needed after a message that ends in a space. */
25+ windgoto(msg_row, msg_col);
26+
27 ++no_mapping;
28 ++allow_keys;
29 if (argvars[0].v_type == VAR_UNKNOWN)
30*** ../vim-7.0.028/src/version.c Thu Jun 22 19:47:11 2006
31--- src/version.c Thu Jun 22 20:55:43 2006
32***************
33*** 668,669 ****
34--- 668,671 ----
35 { /* Add new patch number below this line */
36+ /**/
37+ 29,
38 /**/
39
40--
41BEDEVERE: How do you know so much about swallows?
42ARTHUR: Well you have to know these things when you're a king, you know.
43 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
44
45 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
46/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
47\\\ download, build and distribute -- http://www.A-A-P.org ///
48 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034175 seconds and 4 git commands to generate.