]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.548
- add patches 7.3.619-743
[packages/vim.git] / 7.3.548
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.548
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.548
11 Problem:    Compiler warning on 64 bit Windows.
12 Solution:   Add type cast. (Mike Williams)
13 Files:      src/ops.c
14
15
16 *** ../vim-7.3.547/src/ops.c    2012-06-06 23:08:33.000000000 +0200
17 --- src/ops.c   2012-06-07 21:07:57.000000000 +0200
18 ***************
19 *** 4352,4358 ****
20   
21                 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
22                                                            &prev_was_comment);
23 !               comments[t] = new_curr - curr;
24                 curr = new_curr;
25             }
26             else
27 --- 4352,4358 ----
28   
29                 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
30                                                            &prev_was_comment);
31 !               comments[t] = (int)(new_curr - curr);
32                 curr = new_curr;
33             }
34             else
35 *** ../vim-7.3.547/src/version.c        2012-06-06 23:08:33.000000000 +0200
36 --- src/version.c       2012-06-07 21:08:35.000000000 +0200
37 ***************
38 *** 716,717 ****
39 --- 716,719 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     548,
43   /**/
44
45 -- 
46 How To Keep A Healthy Level Of Insanity:
47 17. When the money comes out the ATM, scream "I won!, I won! 3rd
48     time this week!!!!!"
49
50  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
51 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
53  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.076853 seconds and 3 git commands to generate.