]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.477
- up to 7.3.600
[packages/vim.git] / 7.3.477
CommitLineData
03d4279c
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.477
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.477
11Problem: Using ":echo" to output enough lines to scroll, then using "j" and
12 "k" at the more prompt, displays the command on top of the output.
13 (Marcin Szamotulski)
14Solution: Put the output below the command. (Christian Brabandt)
15Files: src/eval.c
16
17
18*** ../vim-7.3.476/src/eval.c 2012-03-07 19:16:49.000000000 +0100
19--- src/eval.c 2012-03-23 15:11:30.000000000 +0100
20***************
21*** 20492,20498 ****
22--- 20492,20503 ----
23 /* Call msg_start() after eval1(), evaluating the expression
24 * may cause a message to appear. */
25 if (eap->cmdidx == CMD_echo)
26+ {
27+ /* Put the output below the command, makes scrolling back
28+ * at more prompt work. */
29+ msg_didout = TRUE;
30 msg_start();
31+ }
32 }
33 else if (eap->cmdidx == CMD_echo)
34 msg_puts_attr((char_u *)" ", echo_attr);
35*** ../vim-7.3.476/src/version.c 2012-03-23 14:16:19.000000000 +0100
36--- src/version.c 2012-03-23 15:13:58.000000000 +0100
37***************
38*** 716,717 ****
39--- 716,719 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 477,
43 /**/
44
45--
46"Marriage is when a man and woman become as one; the trouble starts
47when they try to decide which one"
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ an exciting new programming language -- http://www.Zimbu.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.074989 seconds and 4 git commands to generate.