]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.143
- new
[packages/vim.git] / 7.0.143
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.143
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.0.143
11 Problem:    Setting 'scroll' to its default value was not handled correctly.
12 Solution:   Compare the right field to PV_SCROLL.
13 Files:      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 -- 
46 hundred-and-one symptoms of being an internet addict:
47 56. 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.02922 seconds and 3 git commands to generate.