]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.143
- updated to 1.15
[packages/vim.git] / 7.0.143
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.143
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.0.143
11Problem: Setting 'scroll' to its default value was not handled correctly.
12Solution: Compare the right field to PV_SCROLL.
13Files: src/option.c
14
15
16*** ../vim-7.0.142/src/option.c Tue Oct 10 18:43:50 2006
17--- src/option.c Tue Oct 17 17:29:09 2006
18***************
19*** 3405,3411 ****
20 }
21 else if (flags & P_NUM)
22 {
23! if (varp == (char_u *)PV_SCROLL)
24 win_comp_scroll(curwin);
25 else
26 {
27--- 3405,3411 ----
28 }
29 else if (flags & P_NUM)
30 {
31! if (options[opt_idx].indir == PV_SCROLL)
32 win_comp_scroll(curwin);
33 else
34 {
35*** ../vim-7.0.142/src/version.c Tue Oct 17 16:55:47 2006
36--- src/version.c Tue Oct 17 18:34:53 2006
37***************
38*** 668,669 ****
39--- 668,671 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 143,
43 /**/
44
45--
46hundred-and-one symptoms of being an internet addict:
4756. You leave the modem speaker on after connecting because you think it
48 sounds like the ocean wind...the perfect soundtrack for "surfing the net".
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ download, build and distribute -- http://www.A-A-P.org ///
53 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.110906 seconds and 4 git commands to generate.