]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - vim/patches/vim-7.3.402.patch0
libpng: Update to 1.6.10.
[people/ms/ipfire-3.x.git] / vim / patches / vim-7.3.402.patch0
CommitLineData
c6060300
MT
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.402
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.402
11Problem: When jumping to the first error a line of the buffer is sometimes
12 redrawn on top of the list of errors.
13Solution: Do not call update_topline_redraw() if the display was scrolled
14 up.
15Files: src/quickfix.c
16
17
18*** ../vim-7.3.401/src/quickfix.c 2012-01-10 17:13:48.000000000 +0100
19--- src/quickfix.c 2012-01-20 13:13:25.000000000 +0100
20***************
21*** 1842,1849 ****
22 #endif
23 if (print_message)
24 {
25! /* Update the screen before showing the message */
26! update_topline_redraw();
27 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
28 qi->qf_lists[qi->qf_curlist].qf_count,
29 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
30--- 1842,1851 ----
31 #endif
32 if (print_message)
33 {
34! /* Update the screen before showing the message, unless the screen
35! * scrolled up. */
36! if (!msg_scrolled)
37! update_topline_redraw();
38 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
39 qi->qf_lists[qi->qf_curlist].qf_count,
40 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
41*** ../vim-7.3.401/src/version.c 2012-01-10 22:31:26.000000000 +0100
42--- src/version.c 2012-01-20 13:17:50.000000000 +0100
43***************
44*** 716,717 ****
45--- 716,719 ----
46 { /* Add new patch number below this line */
47+ /**/
48+ 402,
49 /**/
50
51--
52If all you have is a hammer, everything looks like a nail.
53When your hammer is C++, everything begins to look like a thumb.
54 -- Steve Hoflich, comp.lang.c++
55
56 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
57/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
58\\\ an exciting new programming language -- http://www.Zimbu.org ///
59 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///