]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.127
- new
[packages/vim.git] / 7.2.127
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.127
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.127
11 Problem:    When listing mappings and a wrapping line causes the more prompt,
12             after typing 'q' there can be another more prompt. (Markus 
13             Heidelberg)
14 Solution:   Set "lines_left" to allow more lines to be displayed.
15 Files:      src/message.c
16
17
18 *** ../vim-7.2.126/src/message.c        Sun Feb 22 00:58:03 2009
19 --- src/message.c       Mon Feb 23 04:17:39 2009
20 ***************
21 *** 2553,2559 ****
22             {
23                 /* Jump to the choices of the dialog. */
24                 retval = TRUE;
25 -               lines_left = Rows - 1;
26             }
27             else
28   #endif
29 --- 2553,2558 ----
30 ***************
31 *** 2561,2566 ****
32 --- 2560,2568 ----
33                 got_int = TRUE;
34                 quit_more = TRUE;
35             }
36 +           /* When there is some more output (wrapping line) display that
37 +            * without another prompt. */
38 +           lines_left = Rows - 1;
39             break;
40   
41   #ifdef FEAT_CLIPBOARD
42 *** ../vim-7.2.126/src/version.c        Tue Feb 24 04:28:40 2009
43 --- src/version.c       Tue Feb 24 04:35:38 2009
44 ***************
45 *** 678,679 ****
46 --- 678,681 ----
47   {   /* Add new patch number below this line */
48 + /**/
49 +     127,
50   /**/
51
52 -- 
53 The difference between theory and practice, is that in theory, there
54 is no difference between theory and practice.
55
56  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
57 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
58 \\\        download, build and distribute -- http://www.A-A-P.org        ///
59  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.05572 seconds and 3 git commands to generate.