]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.049
- up to 6.4.001 (but some todo issues left)
[packages/vim.git] / 6.3.049
CommitLineData
46c5dd4b
AG
1To: vim-dev@vim.org
2Subject: Patch 6.3.049
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.3.049 (after 6.3.045)
11Problem: Compiler warning for "char" vs "char_u" mixup. (Zoltan Arpadffy)
12Solution: Add a typecast.
13Files: src/option.c
14
15
16*** ../vim-6.3.048/src/option.c Thu Dec 9 16:41:39 2004
17--- src/option.c Wed Dec 15 20:10:15 2004
18***************
19*** 4619,4625 ****
20 * separator (slash and/or backslash), wildcards and characters that are
21 * often illegal in a file name. */
22 else if ((options[opt_idx].flags & P_NFNAME)
23! && vim_strpbrk(*varp, "/\\*?[|<>") != NULL)
24 {
25 errmsg = e_invarg;
26 }
27--- 4619,4625 ----
28 * separator (slash and/or backslash), wildcards and characters that are
29 * often illegal in a file name. */
30 else if ((options[opt_idx].flags & P_NFNAME)
31! && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
32 {
33 errmsg = e_invarg;
34 }
35*** ../vim-6.3.048/src/version.c Thu Dec 16 12:02:57 2004
36--- src/version.c Thu Dec 16 12:04:28 2004
37***************
38*** 643,644 ****
39--- 643,646 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 49,
43 /**/
44
45--
46hundred-and-one symptoms of being an internet addict:
4785. Choice between paying Compuserve bill and paying for kids education
48 is a no brainer -- although a bit painful for your kids.
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
53 \\\ Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html ///
This page took 0.027905 seconds and 4 git commands to generate.