]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.305
- new
[packages/vim.git] / 7.3.305
CommitLineData
59ab3540
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.305
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.305
11Problem: Auto-loading a function while editing the command line causes
12 scrolling up the display.
13Solution: Don't set msg_scroll when defining a function and the user is not
14 typing. (Yasuhiro Matsumoto)
15Files: src/eval.c
16
17
18*** ../vim-7.3.304/src/eval.c 2011-08-17 15:23:16.000000000 +0200
19--- src/eval.c 2011-09-14 14:28:21.000000000 +0200
20***************
21*** 20786,20792 ****
22 nesting = 0;
23 for (;;)
24 {
25! msg_scroll = TRUE;
26 need_wait_return = FALSE;
27 sourcing_lnum_off = sourcing_lnum;
28
29--- 20786,20793 ----
30 nesting = 0;
31 for (;;)
32 {
33! if (KeyTyped)
34! msg_scroll = TRUE;
35 need_wait_return = FALSE;
36 sourcing_lnum_off = sourcing_lnum;
37
38*** ../vim-7.3.304/src/version.c 2011-09-14 10:49:44.000000000 +0200
39--- src/version.c 2011-09-14 14:30:49.000000000 +0200
40***************
41*** 711,712 ****
42--- 711,714 ----
43 { /* Add new patch number below this line */
44+ /**/
45+ 305,
46 /**/
47
48--
49If someone questions your market projections, simply point out that your
50target market is "People who are nuts" and "People who will buy any damn
51thing". Nobody is going to tell you there aren't enough of those people
52to go around.
53 (Scott Adams - The Dilbert principle)
54
55 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
56/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57\\\ an exciting new programming language -- http://www.Zimbu.org ///
58 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.042781 seconds and 4 git commands to generate.