]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.305
- new
[packages/vim.git] / 7.3.305
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.305
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.305
11 Problem:    Auto-loading a function while editing the command line causes
12             scrolling up the display.
13 Solution:   Don't set msg_scroll when defining a function and the user is not
14             typing. (Yasuhiro Matsumoto)
15 Files:      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 -- 
49 If someone questions your market projections, simply point out that your
50 target market is "People who are nuts" and "People who will buy any damn
51 thing".  Nobody is going to tell you there aren't enough of those people
52 to 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.032525 seconds and 3 git commands to generate.