]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.510
- new
[packages/vim.git] / 6.2.510
CommitLineData
fe53742a
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.510
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.510 (after 6.2.507)
11Problem: Warning for pointer conversion.
12Solution: Add a type cast.
13Files: src/gui_gtk_x11.c
14
15
16*** ../vim-6.2.509/src/gui_gtk_x11.c Tue Apr 27 21:42:53 2004
17--- src/gui_gtk_x11.c Wed Apr 28 16:12:48 2004
18***************
19*** 480,486 ****
20 break;
21 #ifdef FEAT_NETBEANS_INTG
22 /* darn, -nb has non-standard syntax */
23! if (vim_strchr(":=", argv[i][len]) != NULL
24 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
25 break;
26 #endif
27--- 480,486 ----
28 break;
29 #ifdef FEAT_NETBEANS_INTG
30 /* darn, -nb has non-standard syntax */
31! if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
32 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
33 break;
34 #endif
35*** ../vim-6.2.509/src/version.c Wed Apr 28 12:02:26 2004
36--- src/version.c Wed Apr 28 16:14:10 2004
37***************
38*** 639,640 ****
39--- 639,642 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 510,
43 /**/
44
45--
46George: "I just got a new set of golf clubs for my wife!"
47 John: "Great trade!"
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.035229 seconds and 4 git commands to generate.