]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.432
- remove missing .po files
[packages/vim.git] / 6.2.432
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.432
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 6.2.432 (after 6.2.430 and 6.2.431)
11 Problem:    Lint warnings.
12 Solution:   Add type casts.
13 Files:      src/ex_cmds2.c, src/gui.c
14
15
16 *** ../vim-6.2.431/src/ex_cmds2.c       Fri Apr  2 15:28:03 2004
17 --- src/ex_cmds2.c      Fri Apr  2 22:16:21 2004
18 ***************
19 *** 2268,2274 ****
20             convert_setup(&cookie.conv, (char_u *)"utf-8", p_enc);
21         else
22             /* No BOM found, rewind. */
23 !           fseek(cookie.fp, (off_t)0L, SEEK_SET);
24       }
25   #endif
26   
27 --- 2268,2274 ----
28             convert_setup(&cookie.conv, (char_u *)"utf-8", p_enc);
29         else
30             /* No BOM found, rewind. */
31 !           fseek(cookie.fp, 0L, SEEK_SET);
32       }
33   #endif
34   
35 *** ../vim-6.2.431/src/gui.c    Fri Apr  2 21:06:43 2004
36 --- src/gui.c   Fri Apr  2 22:17:32 2004
37 ***************
38 *** 3906,3913 ****
39                     longest_lnum = lnum;
40                 }
41                 else if (n == (colnr_T)max
42 !                       && abs(lnum - curwin->w_cursor.lnum)
43 !                                 < abs(longest_lnum - curwin->w_cursor.lnum))
44                     longest_lnum = lnum;
45             }
46         }
47 --- 3906,3913 ----
48                     longest_lnum = lnum;
49                 }
50                 else if (n == (colnr_T)max
51 !                       && abs((int)(lnum - curwin->w_cursor.lnum))
52 !                          < abs((int)(longest_lnum - curwin->w_cursor.lnum)))
53                     longest_lnum = lnum;
54             }
55         }
56 *** ../vim-6.2.431/src/version.c        Fri Apr  2 21:06:43 2004
57 --- src/version.c       Fri Apr  2 22:24:51 2004
58 ***************
59 *** 639,640 ****
60 --- 639,642 ----
61   {   /* Add new patch number below this line */
62 + /**/
63 +     432,
64   /**/
65
66 -- 
67 hundred-and-one symptoms of being an internet addict:
68 249. You've forgotten what the outside looks like.
69
70  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
71 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
72 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
73  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.058973 seconds and 3 git commands to generate.