]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.127
- new
[packages/vim.git] / 7.2.127
CommitLineData
78f27e33
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.127
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.2.127
11Problem: When listing mappings and a wrapping line causes the more prompt,
12 after typing 'q' there can be another more prompt. (Markus
13 Heidelberg)
14Solution: Set "lines_left" to allow more lines to be displayed.
15Files: 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--
53The difference between theory and practice, is that in theory, there
54is 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.042559 seconds and 4 git commands to generate.