]> git.pld-linux.org Git - packages/vim.git/blob - 6.3.049
c840cd28c981b5df33b71ffd051a02efde2c4942
[packages/vim.git] / 6.3.049
1 To: vim-dev@vim.org
2 Subject: Patch 6.3.049
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.3.049 (after 6.3.045)
11 Problem:    Compiler warning for "char" vs "char_u" mixup. (Zoltan Arpadffy)
12 Solution:   Add a typecast.
13 Files:      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 -- 
46 hundred-and-one symptoms of being an internet addict:
47 85. 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.019656 seconds and 2 git commands to generate.