]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.434
- remove missing .po files
[packages/vim.git] / 6.2.434
CommitLineData
14b40f53
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.434
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 6.2.434 (after 6.2.431)
11Problem: Compiler warning. (Salman Halim)
12Solution: Add type cast.
13Files: src/gui.c
14
15
16*** ../vim-6.2.433/src/gui.c Fri Apr 2 22:25:53 2004
17--- src/gui.c Fri Apr 2 22:30:29 2004
18***************
19*** 3918,3924 ****
20 if (virtual_active())
21 {
22 /* May move the cursor even further to the right. */
23! if (curwin->w_virtcol >= max)
24 max = curwin->w_virtcol;
25 }
26 #endif
27--- 3918,3924 ----
28 if (virtual_active())
29 {
30 /* May move the cursor even further to the right. */
31! if (curwin->w_virtcol >= (colnr_T)max)
32 max = curwin->w_virtcol;
33 }
34 #endif
35*** ../vim-6.2.433/src/version.c Fri Apr 2 22:28:38 2004
36--- src/version.c Fri Apr 2 22:33:37 2004
37***************
38*** 639,640 ****
39--- 639,642 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 434,
43 /**/
44
45--
46Vi is clearly superior to emacs, since "vi" has only two characters
47(and two keystrokes), while "emacs" has five. (Randy C. Ford)
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
52 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.038893 seconds and 4 git commands to generate.